package cn.iocoder.yudao.module.mes.dal.dataobject.qc.seedquality; import cn.iocoder.yudao.framework.mybatis.core.dataobject.BaseDO; import com.baomidou.mybatisplus.annotation.*; import lombok.*; import java.time.LocalDateTime; @TableName("mes_qc_seed_quality") @KeySequence("mes_qc_seed_quality_seq") @Data @EqualsAndHashCode(callSuper = true) @Builder @NoArgsConstructor @AllArgsConstructor public class MesQcSeedQualityDO extends BaseDO { @TableId private Long id; private String code; private Long itemId; private String batchCode; private Integer result; private String reason; private Long inspectorId; private LocalDateTime inspectedAt; }