新功能点:分标委开发
This commit is contained in:
+23
@@ -0,0 +1,23 @@
|
||||
package com.jero.payCaseCommittee.entity.DTO;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import org.jeecgframework.poi.excel.annotation.Excel;
|
||||
|
||||
import javax.validation.constraints.NotBlank;
|
||||
import javax.validation.constraints.Size;
|
||||
|
||||
@Data
|
||||
@ApiModel(value="PayCaseCommitteeDTO对象", description="分标委请求对象")
|
||||
public class PayCaseCommitteeDTO {
|
||||
|
||||
@NotBlank(message = "分标委名称不能为空")
|
||||
@Size(max = 20,message = "分标委名称长度不能超过20")
|
||||
@ApiModelProperty(value = "分标委名称")
|
||||
private java.lang.String name;
|
||||
|
||||
@Size(max = 100,message = "备注长度不得超过100")
|
||||
@ApiModelProperty(value = "备注")
|
||||
private java.lang.String remarks;
|
||||
}
|
||||
@@ -154,6 +154,7 @@ spring:
|
||||
shutdown-timeout: 100ms
|
||||
password: hzwlsoft.com
|
||||
port: 4780
|
||||
|
||||
#mybatis plus 设置
|
||||
mybatis-plus:
|
||||
mapper-locations: classpath*:com/jero/**/xml/*Mapper.xml
|
||||
|
||||
Reference in New Issue
Block a user