Commit 5710fb1c authored by 高建强's avatar 高建强

人员管理新增业务密码字段

parent f773df39
......@@ -39,6 +39,9 @@ public class PersonAccountDto extends BaseDto {
@ApiModelProperty(value = "二次密码")
private String secondaryPassword;
@ApiModelProperty(value = "业务密码")
private String businessPassword;
@ApiModelProperty(value = "部门id")
private Long departmentId;
......
......@@ -62,6 +62,11 @@ public class PersonAccount extends BaseEntity {
private String password;
@TableField("secondary_password")
private String secondaryPassword;
/**
* 业务密码
*/
@TableField("business_password")
private String businessPassword;
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment