| | |
| | | |
| | | import com.aps.common.core.annotation.Excel; |
| | | import com.aps.common.core.web.domain.BaseEntity; |
| | | import lombok.Builder; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | |
| | | import java.io.Serial; |
| | | import java.math.BigDecimal; |
| | | |
| | | /** |
| | | * 标准工艺路线Line对象 aps_standard_process_route_line |
| | |
| | | |
| | | @EqualsAndHashCode(callSuper = true) |
| | | @Data |
| | | @Builder |
| | | public class ApsStandardProcessRouteLine extends BaseEntity |
| | | { |
| | | @Serial |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** $column.columnComment */ |
| | | |
| | | private Long id; |
| | | |
| | | /** 工艺路线ID */ |
| | | @Excel(name = "工艺路线ID") |
| | | |
| | | private String routeId; |
| | | |
| | | /** 工序序号 */ |
| | | @Excel(name = "工序序号") |
| | | |
| | | private String routeNum; |
| | | |
| | | /** 工序名称 */ |
| | |
| | | |
| | | /** 设计产能 */ |
| | | @Excel(name = "设计产能") |
| | | private String designCapacity; |
| | | private BigDecimal designCapacity; |
| | | |
| | | /** 是否删除,0有效 1删除 */ |
| | | private Long delFlag; |
| | | |
| | | private BigDecimal routeTime; |
| | | } |