上下班缺卡定时任务
This commit is contained in:
		@ -14,6 +14,7 @@ public class WgzAndBgtMessageConstant {
 | 
			
		||||
	public static final  String LARGE_OTHER = "2";	//大类型-其它
 | 
			
		||||
	public static final  String SMALL_CARD = "0"; //小类型-补卡
 | 
			
		||||
	public static final  String SMALL_SYSTEM = "1"; //小类型-系统
 | 
			
		||||
	public static final  String SMALL_EXIT = "2"; //小类型-退场
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
	/**
 | 
			
		||||
@ -43,6 +44,12 @@ public class WgzAndBgtMessageConstant {
 | 
			
		||||
	//【工资结算】11-12
 | 
			
		||||
	public static final String WGZ_SYSTEM_HEADLINE_PAYCALCULATION = "您正在申请【%s】项目,为期【%s】天的工资结算操作!";
 | 
			
		||||
	public static final String WGZ_SYSTEM_SUBHEADING_PAYCALCULATION = "您已成功发起为期【%s】天,金额为【%s】的工资结算操作,请耐心等待回复!";
 | 
			
		||||
	//【上班缺卡】13-14
 | 
			
		||||
	public static final String WGZ_SYSTEM_HEADLINE_GOONDUTY = "您在【%s】有一次上班缺卡!";
 | 
			
		||||
	public static final String WGZ_SYSTEM_SUBHEADING_GOONDUTY = "您在【%s】当天有一条上班缺卡,请注意核对!";
 | 
			
		||||
	//【下班缺卡】15-16
 | 
			
		||||
	public static final String WGZ_SYSTEM_HEADLINE_OFFDUTY = "您在【%s】有一次下班缺卡!";
 | 
			
		||||
	public static final String WGZ_SYSTEM_SUBHEADING_OFFDUTY = "您在【%s】当天有一条下班缺卡,请注意核对!";
 | 
			
		||||
	/**
 | 
			
		||||
	 * 务工者给包工头提示
 | 
			
		||||
	 */
 | 
			
		||||
@ -94,7 +101,15 @@ public class WgzAndBgtMessageConstant {
 | 
			
		||||
			case "111":
 | 
			
		||||
				return String.format(WGZ_SYSTEM_HEADLINE_PAYCALCULATION,mp.get("projectName"), mp.get("num"));
 | 
			
		||||
			case "112":
 | 
			
		||||
				return String.format(WGZ_SYSTEM_SUBHEADING_PAYCALCULATION, mp.get("num"),mp.get("money"));
 | 
			
		||||
				return String.format(WGZ_SYSTEM_SUBHEADING_PAYCALCULATION, mp.get("num"),mp.get("money"));			//系统工资结算申请提示
 | 
			
		||||
			case "113":
 | 
			
		||||
				return String.format(WGZ_SYSTEM_HEADLINE_GOONDUTY,mp.get("data"));
 | 
			
		||||
			case "114":
 | 
			
		||||
				return String.format(WGZ_SYSTEM_SUBHEADING_GOONDUTY, mp.get("data"));
 | 
			
		||||
			case "115":
 | 
			
		||||
				return String.format(WGZ_SYSTEM_HEADLINE_OFFDUTY,mp.get("data"));
 | 
			
		||||
			case "116":
 | 
			
		||||
				return String.format(WGZ_SYSTEM_SUBHEADING_OFFDUTY, mp.get("data"));
 | 
			
		||||
			//务工者向包工头申请报名
 | 
			
		||||
			case "201":
 | 
			
		||||
				return String.format(WGZ_HEADLINE_APPLY, mp.get("userName"), mp.get("post"));
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user