| | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel; |
| | | import io.swagger.annotations.ApiModel; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | |
| | | @TableName("product_process") |
| | | @Data |
| | | @ExcelIgnoreUnannotated |
| | | @ApiModel(value = "productProcess", description = "工序表") |
| | | public class ProductProcess implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | |
| | | private Long tenantId; |
| | | |
| | | |
| | | private Boolean isQuality; |
| | | |
| | | |
| | | } |