护理类、后勤类、仓库类矩阵计划实体类增加频率的操作时间、执行次数字段

This commit is contained in:
1378012178@qq.com 2026-01-16 14:00:50 +08:00
parent c827179664
commit c5efcf1b70
3 changed files with 34 additions and 0 deletions

View File

@ -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;

View File

@ -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;

View File

@ -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;