6 天以前 ffe7921a138331185186fd100846fe50dcaf841c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package cn.iocoder.yudao.module.mes.controller.admin.md.autocode.vo.record;
 
import io.swagger.v3.oas.annotations.media.Schema;
import jakarta.validation.constraints.NotEmpty;
import lombok.Data;
 
@Schema(description = "管理后台 - MES 编码生成 Request VO")
@Data
public class MesMdAutoCodeGenerateReqVO {
 
    @Schema(description = "规则编码", requiredMode = Schema.RequiredMode.REQUIRED, example = "ITEM_CODE")
    @NotEmpty(message = "规则编码不能为空")
    private String ruleCode;
 
    @Schema(description = "输入字符", example = "A")
    private String inputChar;
 
}