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.
bsdgy-server/src/main/java/com/kiisoo/ic/system/bean/ModifyAccountInput.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;
}