You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
913 B
Java
69 lines
913 B
Java
package com.kiisoo.ic.system.bean;
|
|
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* @author jinchaofan
|
|
* @date 2020/2/19 20:13
|
|
* @company kiisoo
|
|
* @details 修改账号输入类
|
|
*/
|
|
@Data
|
|
public class ModifyAccountInput {
|
|
|
|
/**
|
|
* 账号id
|
|
*/
|
|
private Long accountId;
|
|
|
|
/**
|
|
* 用户id
|
|
*/
|
|
private Long userId;
|
|
|
|
/**
|
|
* 账号
|
|
*/
|
|
private String account;
|
|
|
|
/**
|
|
* 用户名
|
|
*/
|
|
private String userName;
|
|
|
|
/**
|
|
* 密码
|
|
*/
|
|
private String password;
|
|
|
|
/**
|
|
* 确认密码
|
|
*/
|
|
private String confirmPassword;
|
|
|
|
/**
|
|
* 角色id
|
|
*/
|
|
private Long roleId;
|
|
|
|
/**
|
|
* 店铺id-店长才会有
|
|
*/
|
|
private Long shopId;
|
|
|
|
/**
|
|
* 系统角色类型
|
|
*/
|
|
private Long type;
|
|
|
|
/**
|
|
* 人员编号
|
|
*/
|
|
private String staffCode;
|
|
|
|
/**
|
|
* 零售公司id
|
|
*/
|
|
private Long companyId;
|
|
}
|