feat(task): 添加手机端组件名称字段支持

- 在TaskLogCO中新增componentName字段用于手机端组件标识
- 在TaskLogE实体类中添加componentName属性定义
- 在TaskLogDO数据对象中增加componentName字段映射
- 更新实体拷贝构造函数以包含componentName字段赋值
- 为新字段添加相应的API文档注解说明
master
fangjiakai 2026-03-20 11:23:49 +08:00
parent 3b772a7628
commit 83c6e2bf43
3 changed files with 9 additions and 0 deletions

View File

@ -139,6 +139,9 @@ public class TaskLogCO extends ClientObject {
//其他参数special_step_code==other 时使用)
@ApiModelProperty(value = "其他参数")
private String otherParams;
//手机端组件名称special_step_code==other 时使用)
@ApiModelProperty(value = "手机端组件名称")
private String componentName;
@ApiModelProperty(value = "当前步骤需设置的签字人")
List<TaskLogCO> settingSignSteps;

View File

@ -95,6 +95,8 @@ public class TaskLogE extends BaseE {
private String longitude;
//其他参数special_step_code==other 时使用)
private String otherParams;
//手机端组件名称special_step_code==other 时使用)
private String componentName;
public TaskLogE(TaskLogE log) {
this.taskLogId = log.getTaskLogId();
@ -131,6 +133,7 @@ public class TaskLogE extends BaseE {
this.latitude = log.getLatitude();
this.longitude = log.getLongitude();
this.otherParams = log.getOtherParams();
this.componentName = log.getComponentName();
}

View File

@ -137,6 +137,9 @@ public class TaskLogDO extends BaseDO {
//其他参数special_step_code==other 时使用)
@ApiModelProperty(value = "其他参数")
private String otherParams;
//手机端组件名称special_step_code==other 时使用)
@ApiModelProperty(value = "手机端组件名称")
private String componentName;
public TaskLogDO(String taskLogId) {
this.taskLogId = taskLogId;