feat(task): 添加手机端组件名称字段支持
- 在TaskLogCO中新增componentName字段用于手机端组件标识 - 在TaskLogE实体类中添加componentName属性定义 - 在TaskLogDO数据对象中增加componentName字段映射 - 更新实体拷贝构造函数以包含componentName字段赋值 - 为新字段添加相应的API文档注解说明master
parent
3b772a7628
commit
83c6e2bf43
|
|
@ -139,6 +139,9 @@ public class TaskLogCO extends ClientObject {
|
||||||
//其他参数(special_step_code==other 时使用)
|
//其他参数(special_step_code==other 时使用)
|
||||||
@ApiModelProperty(value = "其他参数")
|
@ApiModelProperty(value = "其他参数")
|
||||||
private String otherParams;
|
private String otherParams;
|
||||||
|
//手机端组件名称(special_step_code==other 时使用)
|
||||||
|
@ApiModelProperty(value = "手机端组件名称")
|
||||||
|
private String componentName;
|
||||||
|
|
||||||
@ApiModelProperty(value = "当前步骤需设置的签字人")
|
@ApiModelProperty(value = "当前步骤需设置的签字人")
|
||||||
List<TaskLogCO> settingSignSteps;
|
List<TaskLogCO> settingSignSteps;
|
||||||
|
|
|
||||||
|
|
@ -95,6 +95,8 @@ public class TaskLogE extends BaseE {
|
||||||
private String longitude;
|
private String longitude;
|
||||||
//其他参数(special_step_code==other 时使用)
|
//其他参数(special_step_code==other 时使用)
|
||||||
private String otherParams;
|
private String otherParams;
|
||||||
|
//手机端组件名称(special_step_code==other 时使用)
|
||||||
|
private String componentName;
|
||||||
|
|
||||||
public TaskLogE(TaskLogE log) {
|
public TaskLogE(TaskLogE log) {
|
||||||
this.taskLogId = log.getTaskLogId();
|
this.taskLogId = log.getTaskLogId();
|
||||||
|
|
@ -131,6 +133,7 @@ public class TaskLogE extends BaseE {
|
||||||
this.latitude = log.getLatitude();
|
this.latitude = log.getLatitude();
|
||||||
this.longitude = log.getLongitude();
|
this.longitude = log.getLongitude();
|
||||||
this.otherParams = log.getOtherParams();
|
this.otherParams = log.getOtherParams();
|
||||||
|
this.componentName = log.getComponentName();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -137,6 +137,9 @@ public class TaskLogDO extends BaseDO {
|
||||||
//其他参数(special_step_code==other 时使用)
|
//其他参数(special_step_code==other 时使用)
|
||||||
@ApiModelProperty(value = "其他参数")
|
@ApiModelProperty(value = "其他参数")
|
||||||
private String otherParams;
|
private String otherParams;
|
||||||
|
//手机端组件名称(special_step_code==other 时使用)
|
||||||
|
@ApiModelProperty(value = "手机端组件名称")
|
||||||
|
private String componentName;
|
||||||
|
|
||||||
public TaskLogDO(String taskLogId) {
|
public TaskLogDO(String taskLogId) {
|
||||||
this.taskLogId = taskLogId;
|
this.taskLogId = taskLogId;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue