Commit fc0c00e4 authored by wangpeng's avatar wangpeng

Merge branch 'dev' into 'test'

Dev See merge request !25
parents b7496a3c 480f3ccb
...@@ -273,6 +273,30 @@ public class NftEvm { ...@@ -273,6 +273,30 @@ public class NftEvm {
// System.err.println(); // System.err.println();
// System.err.println(ra.walletUnlock("ymc12345")); // System.err.println(ra.walletUnlock("ymc12345"));
/*JSONObject userDetail = new JSONObject();
userDetail.put("user_name", merchant.getApplyName());
userDetail.put("user_icon", "");
userDetail.put("phone", merchant.getApplyPhone());
userDetail.put("email", merchant.getLinkMail());
userDetail.put("auth_type", 1);
JSONObject personalAuth = new JSONObject();
personalAuth.put("real_name", merchant.getShortName());
JSONObject enterpriseAuth = new JSONObject();
enterpriseAuth.put("enterprise_name", "复杂美");
JSONObject json = new JSONObject();
json.put("op", "set");
json.put("organization", "system");
json.put("role", "member");
json.put("address", merchant.getTokenIssueAddr());
json.put("organization_note", "");
json.put("address_note", "");
json.put("user_detail", userDetail);
json.put("personal_auth", personalAuth);
json.put("enterprise_auth", enterpriseAuth);
String processGeneralTran = chainUtilFactory.processGeneralTran(json);*/
} }
} }
...@@ -49,4 +49,5 @@ public class GoodsSpuVO { ...@@ -49,4 +49,5 @@ public class GoodsSpuVO {
@TableField(exist = false) @TableField(exist = false)
private String tokenIdStr; private String tokenIdStr;
private Long preheatEndTime;
} }
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
SELECT SELECT
G.goods_id,G.name,G.thumb,G.status,G.max_price,G.default_price, G.goods_id,G.name,G.thumb,G.status,G.max_price,G.default_price,
M.enterprise_name,M.apply_name AS linkName,M.apply_phone AS linkPhone,G.check_fail_reason,G.type, M.enterprise_name,M.apply_name AS linkName,M.apply_phone AS linkPhone,G.check_fail_reason,G.type,
G.create_time,G.commodity_pass G.create_time,G.commodity_pass, G.preheat_end_time
FROM FROM
goods_spu G goods_spu G
LEFT JOIN LEFT JOIN
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment