浏览代码

时间工具类

master
qiubh 2 个月前
父节点
当前提交
00c627596b

+ 7
- 3
gly-base-core/src/main/java/cn/com/taiji/core/model/comm/protocol/ias/order/GetCustomerIdResponse.java 查看文件

@@ -16,8 +16,12 @@ public class GetCustomerIdResponse extends BaseModel {
@JsonIgnore
private String data;

public String getCustomerId() throws IOException {
return JsonTools.json2Object(data, this.getClass()).getCustomerId();
// return JSONObject.parseObject(data).getString("customerId");
public String getCustomerId() {
try {
return JsonTools.json2Object(data, this.getClass()).getCustomerId();
} catch (IOException e) {
e.printStackTrace();
}
return null;
}
}

正在加载...
取消
保存