xiaoyi
4 天以前 c9d4ba37c1f681b12e24014013fa9a28734bad42
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package cn.iocoder.yudao.module.mes.controller.admin.pro.alternativeplan.vo;
 
import cn.iocoder.yudao.framework.common.pojo.PageParam;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.ToString;
 
@Schema(description = "管理后台 - MES 作业替代方案分页 Request VO")
@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public class MesProAlternativePlanPageReqVO extends PageParam {
 
    @Schema(description = "方案编码", example = "TD20260820001")
    private String code;
 
    @Schema(description = "方案名称", example = "线路巡检替代方案")
    private String name;
 
    @Schema(description = "主工序编号", example = "100")
    private Long mainProcessId;
 
    @Schema(description = "状态(0=草稿,10=已发布)", example = "0")
    private Integer status;
 
}