护理类、后勤类、仓库类矩阵计划实体类增加频率的操作时间、执行次数字段
This commit is contained in:
parent
c827179664
commit
c5efcf1b70
|
|
@ -109,6 +109,18 @@ public class CareDirectivePlan implements Serializable {
|
|||
private String sysOrgCode;
|
||||
/**是否是服务指令包 N否 Y是*/
|
||||
private String izPackage;
|
||||
/**
|
||||
* 操作日志,用于频次类型的计算
|
||||
*/
|
||||
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
||||
private Date optTime;
|
||||
/**
|
||||
* 执行次数,0不限次数 非0具体次数,用于频次类型计算
|
||||
*/
|
||||
private Integer optCount;
|
||||
|
||||
|
||||
@TableField(exist = false)
|
||||
private String packageId;
|
||||
|
||||
|
|
|
|||
|
|
@ -110,6 +110,17 @@ public class InvoicingDirectivePlan implements Serializable {
|
|||
private String sysOrgCode;
|
||||
/**是否是服务指令包 N否 Y是*/
|
||||
private String izPackage;
|
||||
/**
|
||||
* 操作日志,用于频次类型的计算
|
||||
*/
|
||||
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
||||
private Date optTime;
|
||||
/**
|
||||
* 执行次数,0不限次数 非0具体次数,用于频次类型计算
|
||||
*/
|
||||
private Integer optCount;
|
||||
|
||||
@TableField(exist = false)
|
||||
private String packageId;
|
||||
|
||||
|
|
|
|||
|
|
@ -114,6 +114,17 @@ public class LogisticsDirectivePlan implements Serializable {
|
|||
private String sysOrgCode;
|
||||
/**是否是服务指令包 N否 Y是*/
|
||||
private String izPackage;
|
||||
/**
|
||||
* 操作日志,用于频次类型的计算
|
||||
*/
|
||||
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
||||
private Date optTime;
|
||||
/**
|
||||
* 执行次数,0不限次数 非0具体次数,用于频次类型计算
|
||||
*/
|
||||
private Integer optCount;
|
||||
|
||||
@TableField(exist = false)
|
||||
private String packageId;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue