1. 移除错误的引用
This commit is contained in:
@@ -1,27 +0,0 @@
|
||||
package com.zt.plat.module.base.controller.admin.templtp.vo;
|
||||
|
||||
import com.alibaba.fastjson2.JSONArray;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.*;
|
||||
import java.util.*;
|
||||
import jakarta.validation.constraints.*;
|
||||
|
||||
@Schema(description = "管理后台 - 业务实例字段值新增/修改 Request VO")
|
||||
@Data
|
||||
public class TmplInscDatBsnSaveReqVO {
|
||||
|
||||
@Schema(description = "主键", requiredMode = Schema.RequiredMode.REQUIRED, example = "8260")
|
||||
private String id;
|
||||
|
||||
@Schema(description = "关联中间表业务主键", requiredMode = Schema.RequiredMode.REQUIRED, example = "4270")
|
||||
@NotEmpty(message = "关联中间表业务主键不能为空")
|
||||
private String bsnId;
|
||||
|
||||
@Schema(description = "字段标识,关联实例字段库", requiredMode = Schema.RequiredMode.REQUIRED)
|
||||
@NotEmpty(message = "字段标识,关联实例字段库不能为空")
|
||||
private String inscFldId;
|
||||
|
||||
@Schema(description = "用户填写的值")
|
||||
private String fldVal;
|
||||
|
||||
}
|
||||
@@ -1,26 +0,0 @@
|
||||
package com.zt.plat.module.base.controller.admin.templtp.vo;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.*;
|
||||
import java.util.*;
|
||||
import jakarta.validation.constraints.*;
|
||||
|
||||
@Schema(description = "管理后台 - 业务实例条款值新增/修改 Request VO")
|
||||
@Data
|
||||
public class TmplInscItmBsnSaveReqVO {
|
||||
|
||||
@Schema(description = "主键", requiredMode = Schema.RequiredMode.REQUIRED, example = "30559")
|
||||
private String id;
|
||||
|
||||
@Schema(description = "关联中间表业务主键", requiredMode = Schema.RequiredMode.REQUIRED, example = "17128")
|
||||
@NotEmpty(message = "关联中间表业务主键不能为空")
|
||||
private String bsnId;
|
||||
|
||||
@Schema(description = "实例条款主键,关联实例字段库", requiredMode = Schema.RequiredMode.REQUIRED, example = "15878")
|
||||
@NotEmpty(message = "实例条款主键,关联实例字段库不能为空")
|
||||
private String instceItmId;
|
||||
|
||||
@Schema(description = "用户填写的值")
|
||||
private String val;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user