hongjli
2025-05-16 7cd52b112a2e7da06aa8cfebf19a337be858762f
aps-modules/aps-core/src/main/java/com/aps/core/domain/ApsPlateOrderPlanManager.java
@@ -22,15 +22,17 @@
    /** 工单ID */
    @Excel(name = "工单ID")
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private Long id;
    /** 需求ID */
    @Excel(name = "需求ID")
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private Long requireId;
    /** 需求追溯ID */
    @Excel(name = "需求追溯ID")
    private Long requireTraceId;
    private Long requireTrackId;
    /** 工单号 */
    @Excel(name = "工单号")
@@ -94,10 +96,17 @@
    /** 需求计划开工日 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @Excel(name = "需求计划开工日", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
    private Date startDay;
    private Date startDate;
    /** 需求计划开完日 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @Excel(name = "需求计划开完日", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
    private Date completeDay;
    private Date completeDate;
    /** 自定义日期 */
//    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
//    @Excel(name = "自定义日期", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
//    private Date customTime;
    private Integer requireNum;
}