hdy
2025-02-26 a2cd0f560c226d7830c79fa3c0a6cb3db72927b4
billion-main/src/main/java/com/billion/main/om/domain/OmProductionOrderInfo.java
@@ -1,7 +1,7 @@
package com.billion.main.om.domain;
import com.baomidou.mybatisplus.annotation.TableId;
import com.billion.common.annotation.Excel;
import com.billion.main.common.BaseEntity;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
@@ -14,8 +14,12 @@
 * @date 2024-11-20
 */
@Data
public class OmProductionOrderInfo extends BaseEntity
public class OmProductionOrderInfo
{
    @TableId
    /** 主键id */
    private Long id;
    /** 工单编号 */
    @Excel(name = "工单编号")
    private String workOrderNo;
@@ -37,13 +41,13 @@
    private Long planQty;
    /** 计划开始时间 */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "计划开始时间", width = 30, dateFormat = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @Excel(name = "计划开始时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
    private Date planStartTime;
    /** 计划结束时间 */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "计划结束时间", width = 30, dateFormat = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @Excel(name = "计划结束时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
    private Date planEndTime;
    /** 工单状态(1未开始2生产中3已完成4已关闭) */
@@ -52,6 +56,35 @@
    /** 备注 */
    @Excel(name = "备注")
    private String remarks;
    private Long remarks;
    /** 发动机型号 */
    @Excel(name = "发动机型号")
    private String engineType;
    /** 机型 */
    @Excel(name = "机型")
    private String engineName;
    /** 订单状态 */
    @Excel(name = "订单状态")
    private String flag;
    /** 创建者 */
    private String createBy;
    /** 创建时间 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date createTime;
    /** 更新者 */
    private String updateBy;
    /** 更新时间 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date updateTime;
    /** 逻辑删除 */
    @Excel(name = "机型")
    private String delFlag;
}