企业管理修改

This commit is contained in:
梁琦涛
2021-09-28 10:50:25 +08:00
parent 83ebc7b0ea
commit 0d797622d1
2 changed files with 3 additions and 3 deletions
@@ -137,7 +137,7 @@ public class ProjectCommon {
/**
* 1短信 2邮件 3系统
*/
public final static String MESSAGE_TYPE1 = "0";
public final static String MESSAGE_TYPE1 = "1";
/**
* 1短信 2邮件 3系统
*/
@@ -70,13 +70,13 @@ public class PayCompanyManagement implements Serializable {
/**开户行*/
@Excel(name = "开户行", width = 15)
@ApiModelProperty(value = "开户行")
@NotEmpty(message = "开户行不能为空!")
// @NotEmpty(message = "开户行不能为空!")
@Size(max = 50, message = "开户行长度不能大于50个字符")
private String openingBank;
/**银行账号*/
@Excel(name = "银行账号", width = 15)
@ApiModelProperty(value = "银行账号")
@NotEmpty(message = "银行账号不能为空!")
// @NotEmpty(message = "银行账号不能为空!")
@Size(max = 50, message = "银行账号长度不能大于50个字符")
@Pattern(regexp = "^[0-9]*$",message = "银行账号格式错误")
private String bankAccount;