Bladeren bron

新增大赛信息来源字段

master
kanxianggui 2 jaren geleden
bovenliggende
commit
aad475f4f5

+ 3
- 0
src/main/java/com/xdf/creative/base/params/creative/InnovationApplyQueryParam.java Bestand weergeven

@@ -80,6 +80,9 @@ public class InnovationApplyQueryParam extends QueryParam {
@ApiModelProperty(value = "公司专利技术及荣誉")
private String pojectHonor;

@ApiModelProperty(value = "大赛信息来源")
private String competitionSource;

@ApiModelProperty(value = "2019年财务数据")
private String financialDataOne;


+ 4
- 0
src/main/java/com/xdf/creative/module/entity/InnovationApply.java Bestand weergeven

@@ -91,6 +91,10 @@ public class InnovationApply implements Serializable {
@Length(message = "公司专利技术及荣誉不能超过个 {max} 字符", max = 2000)
private String pojectHonor;

@ApiModelProperty(value = "大赛信息来源")
@Length(message = "大赛信息来源不能超过个 {max} 字符", max = 200)
private String competitionSource;

@ApiModelProperty(value = "2019年财务数据")
@Length(message = "2019年财务数据不能超过个 {max} 字符", max = 1000)
private String financialDataOne;

Laden…
Annuleren
Opslaan