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.io.Serializable; /** * @author clown * * @date 2024/7/17 */ @Data @EqualsAndHashCode(callSuper = false) @Accessors(chain = true) @TableName("T_Quality_monthy") @ApiModel(value = "当月零部件计划进度") public class QualityMonth implements Serializable { @TableField(value = "ID") private Integer id; @TableField(value = "NY") private String ny; @TableField(value = "ProductNo") private String productNo; @TableField(value = "ProductName") private String productName; @TableField(value = "CompletionCount") private Integer completionCount; }