新功能点:分标委开发
This commit is contained in:
-23
@@ -1,23 +0,0 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user