全局替换:生产单 -> 订单

This commit is contained in:
gaoqr
2026-02-28 09:17:12 +08:00
parent 5116fe4d0d
commit d461e4a6e6
361 changed files with 1303 additions and 1303 deletions
@@ -16,7 +16,7 @@ import lombok.ToString;
@AllArgsConstructor
@NoArgsConstructor
public class ReportTemplateReqVO {
@Schema(description = "模板名称", example = "生产单模板")
@Schema(description = "模板名称", example = "单模板")
private String name;
@Schema(description = "模板类型,0内置、1自定义", example = "1")
@@ -21,7 +21,7 @@ public class ReportTemplateRespVO {
@Schema(description = "主键", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
private Long id;
@Schema(description = "模板名称", example = "生产单模板")
@Schema(description = "模板名称", example = "单模板")
private String name;
@Schema(description = "报表模板")
@@ -25,7 +25,7 @@ public class ReportTemplateSaveReqVO {
@Schema(description = "主键", example = "1")
private Long id;
@Schema(description = "模板名称", example = "生产单模板")
@Schema(description = "模板名称", example = "单模板")
@NotBlank(message = "report.template.save.name.notBlank")
@Length(min = 1, max = 30, message = "report.template.save.name.length")
private String name;