get token

This commit is contained in:
sxu 2025-03-15 16:53:35 +08:00
parent 501759fa68
commit d099199a8e
1 changed files with 2 additions and 2 deletions

View File

@ -310,8 +310,8 @@ public class CustInfoServiceImpl extends ServiceImpl<CustInfoMapper, CustInfo> i
@Override
public String getOrderQRCode(Integer sourceType, String paramValue) {
String stime = String.valueOf(System.currentTimeMillis() / 1000L);
return "xnzn{\"s\":" + sourceType + ",\"y\":" + LeCodeUseSceneEnum.PAY.key() + ",\"p\":\"" + paramValue + "\",\"t\":" + stime + "}";
String stime = String.valueOf(System.currentTimeMillis());
return "xnzn{\"s\":" + sourceType + ",\"y\":" + LeCodeUseSceneEnum.PAY.key() + ",\"p\":\"" + paramValue + "\",\"t\":" + "\"" + stime + "\"}";
}
public static void assembleErrInfo(List<CustErrorToLead> custErrorToLeadList, CustAccExcelModel temp, String msg) {