apzl_leasing/src_tenwa/com/tenwa/lease/app/quartzmession/AtTheEndOfContractPush.java
2019-10-10 15:23:33 +08:00

21 lines
617 B
Java

package com.tenwa.lease.app.quartzmession;
import org.quartz.Job;
import org.quartz.JobExecutionContext;
import org.quartz.JobExecutionException;
import com.tenwa.gps.HttpClientSUtil;
import com.tenwa.httpclient.resources.InterfacePlatformConfigure;
public class AtTheEndOfContractPush implements Job {
@Override
public void execute(JobExecutionContext arg0) throws JobExecutionException {
try {
HttpClientSUtil.doGet(InterfacePlatformConfigure.get("url")+InterfacePlatformConfigure.get("AtTheEndOfContractPush"),null,null);
} catch (Exception e) {
e.printStackTrace();
}
}
}