添加委托表单名字段
Some checks failed
Java CI with Maven / build (11) (push) Has been cancelled
Java CI with Maven / build (17) (push) Has been cancelled
Java CI with Maven / build (8) (push) Has been cancelled
yudao-ui-admin CI / build (14.x) (push) Has been cancelled
yudao-ui-admin CI / build (16.x) (push) Has been cancelled
Some checks failed
Java CI with Maven / build (11) (push) Has been cancelled
Java CI with Maven / build (17) (push) Has been cancelled
Java CI with Maven / build (8) (push) Has been cancelled
yudao-ui-admin CI / build (14.x) (push) Has been cancelled
yudao-ui-admin CI / build (16.x) (push) Has been cancelled
This commit is contained in:
parent
d3a9026717
commit
babb54e5fd
@ -51,8 +51,8 @@ public class WtglPageReqVO extends PageParam {
|
||||
@Schema(description = "备注", example = "随便")
|
||||
private String remark;
|
||||
|
||||
@Schema(description = "test1")
|
||||
private String test1;
|
||||
@Schema(description = "formName")
|
||||
private String formName;
|
||||
|
||||
@Schema(description = "test2")
|
||||
private String test2;
|
||||
|
@ -56,9 +56,9 @@ public class WtglRespVO {
|
||||
@ExcelProperty("备注")
|
||||
private String remark;
|
||||
|
||||
@Schema(description = "test1")
|
||||
@ExcelProperty("test1")
|
||||
private String test1;
|
||||
@Schema(description = "formName")
|
||||
@ExcelProperty("formName")
|
||||
private String formName;
|
||||
|
||||
@Schema(description = "test2")
|
||||
@ExcelProperty("test2")
|
||||
|
@ -41,20 +41,22 @@ public class WtglSaveReqVO {
|
||||
private LocalDateTime endTime;
|
||||
|
||||
@Schema(description = "委托总时间", requiredMode = Schema.RequiredMode.REQUIRED)
|
||||
@NotNull(message = "委托总时间不能为空")
|
||||
private Integer date;
|
||||
|
||||
@Schema(description = "创建表单")
|
||||
@NotNull(message = "创建表单不能为空")
|
||||
private String createPath;
|
||||
|
||||
@Schema(description = "详情表单")
|
||||
@NotNull(message = "详情表单不能为空")
|
||||
private String detailPath;
|
||||
|
||||
@Schema(description = "备注", example = "随便")
|
||||
private String remark;
|
||||
|
||||
@Schema(description = "test1")
|
||||
private String test1;
|
||||
@Schema(description = "formName")
|
||||
@NotNull(message = "表单名字不能为空")
|
||||
private String formName;
|
||||
|
||||
@Schema(description = "test2")
|
||||
private String test2;
|
||||
|
@ -70,9 +70,9 @@ public class WtglDO extends BaseDO {
|
||||
*/
|
||||
private String remark;
|
||||
/**
|
||||
* test1
|
||||
* formName
|
||||
*/
|
||||
private String test1;
|
||||
private String formName;
|
||||
/**
|
||||
* test2
|
||||
*/
|
||||
|
@ -30,7 +30,7 @@ public interface WtglMapper extends BaseMapperX<WtglDO> {
|
||||
.eqIfPresent(WtglDO::getCreatePath, reqVO.getCreatePath())
|
||||
.eqIfPresent(WtglDO::getDetailPath, reqVO.getDetailPath())
|
||||
.eqIfPresent(WtglDO::getRemark, reqVO.getRemark())
|
||||
.eqIfPresent(WtglDO::getTest1, reqVO.getTest1())
|
||||
.eqIfPresent(WtglDO::getFormName, reqVO.getFormName())
|
||||
.eqIfPresent(WtglDO::getTest2, reqVO.getTest2())
|
||||
.eqIfPresent(WtglDO::getTest3, reqVO.getTest3())
|
||||
.betweenIfPresent(WtglDO::getCreateTime, reqVO.getCreateTime())
|
||||
|
Loading…
Reference in New Issue
Block a user