20 lines
646 B
Java
20 lines
646 B
Java
package com.tenwa.lease.app.quartzmession;
|
|
|
|
import org.quartz.Job;
|
|
import org.quartz.JobExecutionContext;
|
|
import org.quartz.JobExecutionException;
|
|
|
|
import com.tenwa.voucher.CreateVoucherProcess.CreateVoucherMonthSettlement;
|
|
import com.tenwa.voucher.CreateVoucherProcess.CreateVoucherRentIncome;
|
|
|
|
public class CreateVoucherRentIncomeMission implements Job {
|
|
|
|
@Override
|
|
public void execute(JobExecutionContext arg0) throws JobExecutionException {
|
|
CreateVoucherRentIncome cvri=new CreateVoucherRentIncome();
|
|
cvri.CreateVoucher("PZ2018072100000024");//ÊÕµ½×â½ð
|
|
cvri.CreateVoucher("PZ2018072100000025");//ÊÕµ½ÓâÆÚÀûÏ¢
|
|
}
|
|
|
|
}
|