| | |
| | | package org.springblade.mdm.basesetting.producedivision.vo; |
| | | |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Getter; |
| | | import lombok.Setter; |
| | | import org.springblade.mdm.commons.vo.BaseVO; |
| | | |
| | | /** |
| | | * 主制计划表 |
| | | */ |
| | | |
| | | @Schema(description = "主制分工表") |
| | | @Setter |
| | | @Getter |
| | | public class ProduceDivisionVO extends BaseVO { |
| | | /** |
| | | * 专业组长id |
| | | */ |
| | | @Schema(description = "零组件号/图号") |
| | | private String drawingNo; |
| | | |
| | | @Schema(description = "专业组长id") |
| | | private Long teamLeaderId; |
| | | /** |
| | | * 编制工艺员id |
| | | */ |
| | | |
| | | @Schema(description = "编制工艺员id") |
| | | private Long programmerId; |
| | | /** |
| | | * 校对工艺员id |
| | | */ |
| | | |
| | | @Schema(description = "校对工艺员id") |
| | | private Long checkerId; |
| | | /** |
| | | * 高师id |
| | | */ |
| | | |
| | | @Schema(description = "审批高师id") |
| | | private Long seniorId; |
| | | } |