package org.jeecg.modules.mdcJc.entity; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableName; import io.swagger.annotations.ApiModel; import lombok.Data; import lombok.EqualsAndHashCode; import lombok.experimental.Accessors; import java.util.Date; /** * @author clown * * @date 2024/7/19 */ @Data @EqualsAndHashCode(callSuper = false) @Accessors(chain = true) @TableName("T_UnderLine_Queue") @ApiModel(value = "自动线下线队列MES") public class UnderLineQueue { @TableField(value = "ID") private Integer id; @TableField(value = "PartBarCode") private String partBarCode; @TableField(value = "ProductNo") private String productNo; @TableField(value = "ProductName") private String productName; @TableField(value = "DevCode") private String devCode; @TableField(value = "UnderTime") private Date underTime; @TableField(value = "Remark") private Integer remark; }