7 天以前 ffe7921a138331185186fd100846fe50dcaf841c
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
28
29
30
31
package cn.iocoder.yudao.module.mes.controller.admin.wm.stocktaking.plan.vo.param;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
@Schema(description = "管理后台 - MES 盘点方案参数 Response VO")
@Data
public class MesWmStockTakingPlanParamRespVO {
 
    @Schema(description = "编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
    private Long id;
 
    @Schema(description = "方案 ID", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
    private Long planId;
 
    @Schema(description = "参数类型", requiredMode = Schema.RequiredMode.REQUIRED, example = "102")
    private Integer type;
 
    @Schema(description = "参数值 ID", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
    private Long valueId;
 
    @Schema(description = "参数值编码", example = "WH001")
    private String valueCode;
 
    @Schema(description = "参数值名称", example = "原料仓")
    private String valueName;
 
    @Schema(description = "备注", example = "备注")
    private String remark;
 
}