1、日报补卡 2消息日报补卡
This commit is contained in:
@ -19,10 +19,11 @@ public class WgzAndBgtMessageConstant {
|
||||
public static final String LARGE_APPLY = "0"; //大类型-报名
|
||||
public static final String LARGE_SALARY = "1"; //大类型-工资
|
||||
public static final String LARGE_OTHER = "2"; //大类型-其它
|
||||
public static final String SMALL_CARD = "0"; //小类型-补卡
|
||||
public static final String SMALL_CARD = "0"; //小类型-考勤补卡
|
||||
public static final String SMALL_SYSTEM = "1"; //小类型-系统
|
||||
public static final String SMALL_EXIT = "2"; //小类型-退场
|
||||
public static final String SMALL_LEAVE = "3"; //小类型-请假
|
||||
public static final String SMALL_DAILY = "4"; //小类型-日报补卡
|
||||
|
||||
|
||||
/**
|
||||
@ -61,6 +62,9 @@ public class WgzAndBgtMessageConstant {
|
||||
//【请假超时】17-18
|
||||
public static final String WGZ_SYSTEM_HEADLINE_TIMEOUT = "您【%s】的请假审批已超时未审核!";
|
||||
public static final String WGZ_SYSTEM_SUBHEADING_TIMEOUT = "您在【%s】的请假审批流程未走完,现已超时取消,请注意核对!";
|
||||
//【日报补卡】19-20
|
||||
public static final String WGZ_SYSTEM_HEADLINE_DAILY = "您成功发送【%s】日的日报补卡!";
|
||||
public static final String WGZ_SYSTEM_SUBHEADING_DAILY = "您在【%s】日的日报补卡已成功发起!";
|
||||
/**
|
||||
* 务工者给包工头提示
|
||||
*/
|
||||
@ -79,6 +83,9 @@ public class WgzAndBgtMessageConstant {
|
||||
//【工资结算】9-10
|
||||
public static final String WGZ_HEADLINE_PAYCALCULATION = "务工者【%s】正在向你发起工资结算!";
|
||||
public static final String WGZ__SUBHEADING_PAYCALCULATION = "务工者【%s】向你发起为期【%s】天,金额为【%s】圆整的工资结算操作!";
|
||||
//【日报补卡】11-12
|
||||
public static final String WGZ_HEADLINE_DAILY = "务工者【%s】正在向你发起【%s】日的日报补卡!";
|
||||
public static final String WGZ__SUBHEADING_DAILY = "务工者【%s】向你发起【%s】日的日报补卡,请注意查收处理!";
|
||||
|
||||
//务工者消息返回
|
||||
public static String wgzMessage(Map<String, String> mp, String type) {
|
||||
@ -125,6 +132,10 @@ public class WgzAndBgtMessageConstant {
|
||||
return String.format(WGZ_SYSTEM_HEADLINE_TIMEOUT,mp.get("data"));
|
||||
case "118":
|
||||
return String.format(WGZ_SYSTEM_SUBHEADING_TIMEOUT, mp.get("data"));
|
||||
case "119":
|
||||
return String.format(WGZ_SYSTEM_HEADLINE_DAILY,mp.get("data"));
|
||||
case "120":
|
||||
return String.format(WGZ_SYSTEM_SUBHEADING_DAILY, mp.get("data"));
|
||||
//务工者向包工头申请报名
|
||||
case "201":
|
||||
return String.format(WGZ_HEADLINE_APPLY, mp.get("userName"), mp.get("post"));
|
||||
@ -150,6 +161,11 @@ public class WgzAndBgtMessageConstant {
|
||||
return String.format(WGZ_HEADLINE_PAYCALCULATION, mp.get("userName"));
|
||||
case "210":
|
||||
return String.format(WGZ__SUBHEADING_PAYCALCULATION, mp.get("userName"),mp.get("num"),mp.get("money"));
|
||||
//务工者向包工头发起日报补卡
|
||||
case "211":
|
||||
return String.format(WGZ_HEADLINE_DAILY, mp.get("userName"),mp.get("data"));
|
||||
case "212":
|
||||
return String.format(WGZ__SUBHEADING_DAILY, mp.get("userName"),mp.get("data"));
|
||||
default:
|
||||
return "未知类型";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user