zoujiajian 11 månader sedan
förälder
incheckning
ae15668039

+ 5 - 0
netflix-dao/src/main/java/com/cyksj/model/entity/DistributeMoneyApply.java

@@ -34,6 +34,11 @@ public class DistributeMoneyApply extends BaseEntity {
 
 	private Type type;
 
+	/**
+	 * usdt网格
+	 */
+	private String network;
+
 	private String account;
 
 	private String realName;

+ 5 - 0
netflix-dao/src/main/java/com/cyksj/model/entity/UserMirrorShopDistributeMoneyApply.java

@@ -27,6 +27,11 @@ public class UserMirrorShopDistributeMoneyApply extends BaseEntity {
 
 	private Type type;
 
+	/**
+	 * usdt网格
+	 */
+	private String network;
+
 	private String account;
 
 	private String realName;

+ 5 - 0
netflix-dao/src/main/java/com/cyksj/model/request/ApplyMoneyReq.java

@@ -39,5 +39,10 @@ public class ApplyMoneyReq {
 	 */
 	private String remark;
 
+	/**
+	 * usdt网格
+	 */
+	private String network;
+
 	private Long userId;
 }

+ 5 - 0
netflix-dao/src/main/java/com/cyksj/model/request/UserMirrorShopApplyMoneyReq.java

@@ -35,5 +35,10 @@ public class UserMirrorShopApplyMoneyReq {
 	 */
 	private String remark;
 
+	/**
+	 * usdt网格
+	 */
+	private String network;
+
 	private Long userId;
 }

+ 2 - 0
netflix-service/src/main/java/com/cyksj/service/pay/impl/TransferFuncServiceImpl.java

@@ -254,6 +254,7 @@ public class TransferFuncServiceImpl implements TransferFuncService {
 			distributeMoneyApply.setWalletAddr(applyMoneyReq.getWalletAddr());
 			distributeMoneyApply.setRemark(applyMoneyReq.getRemark());
 			distributeMoneyApply.setType(applyMoneyReq.getType());
+			distributeMoneyApply.setNetwork(applyMoneyReq.getNetwork());
 			if (isTakeAll != null && isTakeAll) {
 				distributeMoneyApply.setVerifyStatus(UserMirrorShopDistributeMoneyApply.Status.verifying);
 			} else {
@@ -437,6 +438,7 @@ public class TransferFuncServiceImpl implements TransferFuncService {
 			distributeMoneyApply.setRemark(applyMoneyReq.getRemark());
 			distributeMoneyApply.setType(applyMoneyReq.getType());
 			distributeMoneyApply.setMType(applyMoneyReq.getMType());
+			distributeMoneyApply.setNetwork(applyMoneyReq.getNetwork());
 			if (isTakeAll != null && isTakeAll) {
 				distributeMoneyApply.setVerifyStatus(DistributeMoneyApply.Status.verifying);
 			} else {