Commit 0b402d343f08ca9f6d8188626a19702d97f46dd5

Authored by zhangxing
1 parent cea3dade

卡账户信息数据模型

src/main/java/com/diligrp/xtrade/order/domain/dto/AccountDto.java
1 -package com.diligrp.xtrade.order.domain.dto;  
2 -  
3 -import java.io.Serializable;  
4 -  
5 -/**  
6 - * 账户实体数据  
7 - * @author zhangxing  
8 - *  
9 - */  
10 -public class AccountDto implements Serializable {  
11 -  
12 -  
13 - private static final long serialVersionUID = 1L;  
14 -  
15 - /**  
16 - * 地利通卡号  
17 - */  
18 - private String cardNo;  
19 -  
20 - /**  
21 - * 实体卡账户ID  
22 - */  
23 - private Long accountId;  
24 -  
25 - /**  
26 - * 客户信息ID  
27 - */  
28 - private Long dltUserId;  
29 -  
30 - /**  
31 - * 1未激活2激活  
32 - */  
33 - private Byte status;  
34 -  
35 - /**  
36 - * 账号类型(1-买家、2-卖家)  
37 - */  
38 - private Byte bizUsageType;  
39 -  
40 - public String getCardNo() {  
41 - return cardNo;  
42 - }  
43 -  
44 - public void setCardNo(String cardNo) {  
45 - this.cardNo = cardNo;  
46 - }  
47 -  
48 - public Long getAccountId() {  
49 - return accountId;  
50 - }  
51 -  
52 - public void setAccountId(Long accountId) {  
53 - this.accountId = accountId;  
54 - }  
55 -  
56 - public Long getDltUserId() {  
57 - return dltUserId;  
58 - }  
59 -  
60 - public void setDltUserId(Long dltUserId) {  
61 - this.dltUserId = dltUserId;  
62 - }  
63 -  
64 - public Byte getStatus() {  
65 - return status;  
66 - }  
67 -  
68 - public void setStatus(Byte status) {  
69 - this.status = status;  
70 - }  
71 -  
72 - public Byte getBizUsageType() {  
73 - return bizUsageType;  
74 - }  
75 -  
76 - public void setBizUsageType(Byte bizUsageType) {  
77 - this.bizUsageType = bizUsageType;  
78 - }  
79 - 1 +package com.diligrp.xtrade.order.domain.dto;
  2 +
  3 +import java.io.Serializable;
  4 +import java.util.List;
  5 +
  6 +/**
  7 + * @ClassName: AccountDto
  8 + * @Description 账户数据模型
  9 + * @author zhangxing
  10 + * @date 2020年4月21日
  11 + */
  12 +public class AccountDto implements Serializable {
  13 +
  14 + private static final long serialVersionUID = 1L;
  15 +
  16 + //卡号
  17 + private String cardNo;
  18 +
  19 + //账号id
  20 + private Long accountId;
  21 +
  22 + //账号名称
  23 + private String accountName;
  24 +
  25 + //手机号
  26 + private String mobile;
  27 +
  28 + //卡号类型
  29 + private String type;
  30 +
  31 + // 资金账号ID
  32 + private Long fundAccount;
  33 +
  34 + //卡状态
  35 + private Integer status;
  36 +
  37 + //副卡的关联主卡账号
  38 + private Long parentAccountId;
  39 +
  40 + //身份证号
  41 + private String idCode;
  42 +
  43 + //权限 3:交易,4:二次交易
  44 + private List<Integer> permissionList;
  45 +
  46 + //1-未认证 2已认证
  47 + private Integer authStatus ;
  48 +
  49 + //账号类型(1-买家、2-卖家)
  50 + private Byte bizUsageType;
  51 +
  52 + public String getCardNo() {
  53 + return cardNo;
  54 + }
  55 +
  56 + public void setCardNo(String cardNo) {
  57 + this.cardNo = cardNo;
  58 + }
  59 +
  60 + public Long getAccountId() {
  61 + return accountId;
  62 + }
  63 +
  64 + public void setAccountId(Long accountId) {
  65 + this.accountId = accountId;
  66 + }
  67 +
  68 + public String getAccountName() {
  69 + return accountName;
  70 + }
  71 +
  72 + public void setAccountName(String accountName) {
  73 + this.accountName = accountName;
  74 + }
  75 +
  76 + public String getMobile() {
  77 + return mobile;
  78 + }
  79 +
  80 + public void setMobile(String mobile) {
  81 + this.mobile = mobile;
  82 + }
  83 +
  84 + public String getType() {
  85 + return type;
  86 + }
  87 +
  88 + public void setType(String type) {
  89 + this.type = type;
  90 + }
  91 +
  92 + public Long getFundAccount() {
  93 + return fundAccount;
  94 + }
  95 +
  96 + public void setFundAccount(Long fundAccount) {
  97 + this.fundAccount = fundAccount;
  98 + }
  99 +
  100 + public Integer getStatus() {
  101 + return status;
  102 + }
  103 +
  104 + public void setStatus(Integer status) {
  105 + this.status = status;
  106 + }
  107 +
  108 + public Long getParentAccountId() {
  109 + return parentAccountId;
  110 + }
  111 +
  112 + public void setParentAccountId(Long parentAccountId) {
  113 + this.parentAccountId = parentAccountId;
  114 + }
  115 +
  116 + public String getIdCode() {
  117 + return idCode;
  118 + }
  119 +
  120 + public void setIdCode(String idCode) {
  121 + this.idCode = idCode;
  122 + }
  123 +
  124 + public List<Integer> getPermissionList() {
  125 + return permissionList;
  126 + }
  127 +
  128 + public void setPermissionList(List<Integer> permissionList) {
  129 + this.permissionList = permissionList;
  130 + }
  131 +
  132 + public Integer getAuthStatus() {
  133 + return authStatus;
  134 + }
  135 +
  136 + public void setAuthStatus(Integer authStatus) {
  137 + this.authStatus = authStatus;
  138 + }
  139 +
  140 + public Byte getBizUsageType() {
  141 + return bizUsageType;
  142 + }
  143 +
  144 + public void setBizUsageType(Byte bizUsageType) {
  145 + this.bizUsageType = bizUsageType;
  146 + }
  147 +
80 } 148 }
81 \ No newline at end of file 149 \ No newline at end of file