package com.lxzn.framework.domain.webservice; import com.baomidou.mybatisplus.annotation.*; import com.fasterxml.jackson.annotation.JsonFormat; import lombok.Data; import lombok.NoArgsConstructor; import java.util.Date; /** * @Author: Lius * @CreateTime: 2025-02-27 * @Description: */ @Data @NoArgsConstructor @TableName(value = "ws_dispatch_info") public class DispatchInfo { @TableId private String id; /** * 主键 */ @TableField(value = "mes_id") private String mesId; /** * 单元 */ @TableField(value = "dept") private String dept; /** * 车间(分厂) */ @TableField(value = "workshop") private String workshop; /** * 版本号(工艺规程版次) */ @TableField(value = "revision_no") private String revisionNo; /** * 零件名称 */ @TableField(value = "mds_item_id") private String mdsItemId; /** * 零件号 */ @TableField(value = "mds_item_code") private String mdsItemCode; /** * 订单号 */ @TableField(value = "task_code") private String taskCode; /** * 流卡号 */ @TableField(value = "ewo_no") private String ewoNo; /** * 批次号 */ @TableField(value = "batch_no") private String batchNo; /** * 批次数量(计划数) */ @TableField(value = "batch_num") private String batchNum; /** * 工序号 */ @TableField(value = "operation_seq_no") private String operationSeqNo; /** * 派工日期 */ @TableField(value = "dispatch_date") private String dispatchDate; /** * 计划开始时间 */ @TableField(value = "plan_start_process_time") private String planStartProcessTime; /** * 计划结束时间 */ @TableField(value = "plan_end_process_time") private String planEndProcessTime; /** * 设备编号 */ @TableField(value = "equipment_id") private String equipmentId; /** * 1 正常 2 取消 3 删除 */ @TableField(value = "task_type") private String taskType; @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8") @TableField(value = "create_time", fill = FieldFill.INSERT) private Date createTime; @TableField(value = "update_time", fill = FieldFill.UPDATE) @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8") private Date updateTime; @TableField(value = "create_user",fill = FieldFill.INSERT) private String createUser; @TableField(value = "update_user", fill = FieldFill.UPDATE) private String updateUser; }