| | |
| | | |
| | | import com.aps.common.core.annotation.Excel; |
| | | import com.aps.common.core.web.domain.BaseEntity; |
| | | import lombok.Builder; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | |
| | |
| | | |
| | | @EqualsAndHashCode(callSuper = true) |
| | | @Data |
| | | @Builder |
| | | public class ApsStandardProcessRouteLine extends BaseEntity |
| | | { |
| | | @Serial |
| | |
| | | private Long delFlag; |
| | | |
| | | private BigDecimal routeTime; |
| | | |
| | | /** 工序编码 */ |
| | | @Excel(name = "工序编码") |
| | | @Schema(description = "工序编码") |
| | | private String routeCode; |
| | | |
| | | /** 标准工时 */ |
| | | @Excel(name = "标准工时") |
| | | @Schema(description = "标准工时") |
| | | private BigDecimal standardTime; |
| | | } |