|
|
@@ -528,6 +528,19 @@ public class Task {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ public void payment(){
|
|
|
+ List<FsStorePayment> fsStorePayments = fsStorePaymentService.selectAllPayment();
|
|
|
+ for (FsStorePayment fsStorePayment : fsStorePayments) {
|
|
|
+ try{
|
|
|
+ fsStorePaymentService.updateFsStorePaymentByDecryptForm(fsStorePayment.getPaymentId());
|
|
|
+ }catch (Exception e){
|
|
|
+ logger.error("同步支付失败:"+fsStorePayment.getPaymentId());
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
public void addQwUserName() {
|
|
|
QwCompany qwCompany = new QwCompany();
|
|
|
List<QwCompany> companyList = qwCompanyService.selectQwCompanyList(qwCompany);
|