|
|
|
@ -228,6 +228,26 @@ public class LiquidTankTaskCopy extends BaseEntity { |
|
|
|
* 备注 |
|
|
|
* 备注 |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public static final String COL_REMARK = "REMARK"; |
|
|
|
public static final String COL_REMARK = "REMARK"; |
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* 撤回原因 |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public static final String COL_REVOKE_REASON = "REVOKE_REASON"; |
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* 首次填报时间 |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public static final String COL_FIRST_FILL_DATE = "FIRST_FILL_DATE"; |
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* 复检填报时间 |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public static final String COL_REPEAT_FILL_DATE = "REPEAT_FILL_DATE"; |
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* 临期标记 |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public static final String COL_FLAG_APPROACH = "FLAG_APPROACH"; |
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* 超期标记 |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public static final String COL_FLAG_OUT = "FLAG_OUT"; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* [槽液检测任务]编码 |
|
|
|
* [槽液检测任务]编码 |
|
|
|
@ -479,4 +499,29 @@ public class LiquidTankTaskCopy extends BaseEntity { |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
@Schema(description = "备注") |
|
|
|
@Schema(description = "备注") |
|
|
|
private String remark; |
|
|
|
private String remark; |
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* 撤回原因 |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
@Schema(description = "撤回原因") |
|
|
|
|
|
|
|
private String revokeReason; |
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* 首次填报时间 |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
@Schema(description = "首次填报时间") |
|
|
|
|
|
|
|
private LocalDateTime firstFillDate; |
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* 复检填报时间 |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
@Schema(description = "复检填报时间") |
|
|
|
|
|
|
|
private LocalDateTime repeatFillDate; |
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* 临期标记 |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
@Schema(description = "临期标记") |
|
|
|
|
|
|
|
private Integer flagApproach; |
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* 超期标记 |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
@Schema(description = "超期标记") |
|
|
|
|
|
|
|
private Integer flagOut; |
|
|
|
} |
|
|
|
} |
|
|
|
|