AccountInfo.java 732 B

12345678910111213141516171819202122232425262728293031323334
  1. package com.fuint.common.dto;
  2. import lombok.Data;
  3. import java.io.Serializable;
  4. import java.util.Date;
  5. /**
  6. * 后台账号信息
  7. *
  8. * Created by FSQ
  9. * CopyRight https://www.fuint.cn
  10. */
  11. @Data
  12. public class AccountInfo implements Serializable {
  13. private Integer id;
  14. private String accountKey;
  15. private String accountName;
  16. private int accountStatus;
  17. private String isActive;
  18. private Date createDate;
  19. private Date modifyDate;
  20. private String salt;
  21. private String roleIds;
  22. private int locked;
  23. private int ownerId;
  24. private String realName;
  25. private Integer merchantId;
  26. private Integer storeId;
  27. private String storeName;
  28. private Integer staffId;
  29. private String token;
  30. }