AccountDto.java 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. package com.fuint.common.dto;
  2. import java.util.Date;
  3. /**
  4. * 后台账户实体类
  5. */
  6. public class AccountDto {
  7. /**
  8. * 账户主键id
  9. */
  10. private Integer id;
  11. /**
  12. * 账户编码
  13. */
  14. private String accountKey;
  15. /**
  16. * 账户名称
  17. */
  18. private String accountName;
  19. /**
  20. * 密码
  21. */
  22. private String password;
  23. /**
  24. * 账户状态
  25. * 状态 : 0 无效 1 有效
  26. */
  27. private int accountStatus;
  28. /**
  29. * 是否激活
  30. * 状态 : 0 未激活 1已激活
  31. */
  32. private int isActive;
  33. /**
  34. * 创建时间
  35. */
  36. private Date createDate;
  37. /**
  38. * 修改时间
  39. */
  40. private Date modifyDate;
  41. /**
  42. * 随机码(公盐)
  43. */
  44. private String salt;
  45. /**
  46. * 是否被锁定
  47. */
  48. private int locked;
  49. /**
  50. * 管理员真实姓名
  51. */
  52. private String realName;
  53. /**
  54. * 所属店铺id
  55. */
  56. private Integer storeId;
  57. /**
  58. * 所属店铺名称
  59. */
  60. private String storeName;
  61. /**
  62. * 员工ID
  63. */
  64. private Integer staffId;
  65. /**
  66. * 所属商户
  67. */
  68. private Integer merchantId;
  69. /**
  70. * 所属商户名称
  71. */
  72. private String merchantName;
  73. public Integer getId() {
  74. return id;
  75. }
  76. public void setId(Integer id) {
  77. this.id = id;
  78. }
  79. public String getAccountKey() {
  80. return accountKey;
  81. }
  82. public void setAccountKey(String accountKey) {
  83. this.accountKey = accountKey;
  84. }
  85. public String getAccountName() {
  86. return accountName;
  87. }
  88. public void setAccountName(String accountName) {
  89. this.accountName = accountName;
  90. }
  91. public String getPassword() {
  92. return password;
  93. }
  94. public void setPassword(String password) {
  95. this.password = password;
  96. }
  97. public int getAccountStatus() {
  98. return accountStatus;
  99. }
  100. public void setAccountStatus(int accountStatus) {
  101. this.accountStatus = accountStatus;
  102. }
  103. public int getIsActive() {
  104. return isActive;
  105. }
  106. public void setIsActive(int isActive) {
  107. this.isActive = isActive;
  108. }
  109. public Date getCreateDate() {
  110. return createDate;
  111. }
  112. public void setCreateDate(Date createDate) {
  113. this.createDate = createDate;
  114. }
  115. public Date getModifyDate() {
  116. return modifyDate;
  117. }
  118. public void setModifyDate(Date modifyDate) {
  119. this.modifyDate = modifyDate;
  120. }
  121. public String getSalt() {
  122. return salt;
  123. }
  124. public void setSalt(String salt) {
  125. this.salt = salt;
  126. }
  127. public int getLocked() {
  128. return locked;
  129. }
  130. public void setLocked(int locked) {
  131. this.locked = locked;
  132. }
  133. public String getRealName() {
  134. return realName;
  135. }
  136. public void setRealName(String realName) {
  137. this.realName = realName;
  138. }
  139. public Integer getStoreId() {
  140. return storeId;
  141. }
  142. public void setStoreId(Integer storeId) {
  143. this.storeId = storeId;
  144. }
  145. public void setStoreName(String storeName) {
  146. this.storeName = storeName;
  147. }
  148. public String getStoreName() {
  149. return storeName;
  150. }
  151. public void setStaffId(Integer staffId) {
  152. this.staffId = staffId;
  153. }
  154. public Integer getStaffId() {
  155. return staffId;
  156. }
  157. public Integer getMerchantId() {
  158. return merchantId;
  159. }
  160. public void setMerchantId(Integer merchantId) {
  161. this.merchantId = merchantId;
  162. }
  163. public void setMerchantName(String merchantName) {
  164. this.merchantName = merchantName;
  165. }
  166. public String getMerchantName() {
  167. return merchantName;
  168. }
  169. }