You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
600 B
Java

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.engine.attendance.vacation.job.holidaygeneration;
import com.engine.common.util.Utils;
import weaver.interfaces.schedule.BaseCronJob;
import java.util.Map;
public class HolidayGenerationJob extends BaseCronJob {
/**
* 是否覆盖1覆盖0不覆盖
*/
private String cover;
/**
* 发放日期
*/
private String releaseDate;
@Override
public void execute() {
Map<String,String> formmodeIdMap = Utils.getFormmodeIdMap();
//假期额度模块id
String modeId = formmodeIdMap.get("uf_jcl_kq_jqed");
}
}