package org.jeecg.modules.mdcJc.entity; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import com.fasterxml.jackson.annotation.JsonFormat; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import lombok.EqualsAndHashCode; import lombok.experimental.Accessors; import org.springframework.format.annotation.DateTimeFormat; import java.io.Serializable; import java.util.Date; /** * @author clown * * @date 2024/7/19 */ @Data @EqualsAndHashCode(callSuper = false) @Accessors(chain = true) @TableName("mdcJc_ProductDayschedule") @ApiModel(value = "当月零部件计划进度") public class MdcProductDayschedule implements Serializable { private static final long serialVersionUID = -4733120585358211415L; @TableId(type = IdType.ASSIGN_ID) private String mdc_id; @TableField(value = "ID") private Integer id; @TableField(value = "PlanDate") private String planDate; @TableField(value = "ProductNo") private String productNo; @TableField(value = "ProductName") private String productName; @TableField(value = "OrderID") private String orderId; @TableField(value = "ProcedureName") private String procedureName; @TableField(value = "Clazz") private String clazz; @TableField(value = "PlanCount") private Integer planCount; @TableField(value = "CompletionCount") private Integer completionCount; @TableField(value = "QualifiedCount") private Integer qualifiedCount; @TableField(value = "ProcessRoute") private String processRoute; @TableField(value = "EquipmentID") private String equipmentId; @TableField(value = "IsAutomaticLine") private String isAutomaticLine; /** * 创建日期 */ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss") @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") @ApiModelProperty(value = "创建日期") private Date createTime; }