Commit 7b0cfb57 authored by 赵啸非's avatar 赵啸非

修改考勤汇总

parent c2308969
package com.mortals.xhx.busiz.h5.web;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
import com.mortals.framework.annotation.UnAuth;
import com.mortals.framework.common.Rest;
......@@ -55,7 +56,7 @@ public class ApiWebPerformController extends AbstractBaseController<PerformReq>
@PostMapping("attend/save")
@UnAuth
public Rest<Void> attendSave(@RequestBody AttendSaveReq req) {
log.info("web Api req==>{}", JSON.toJSONString(req));
String busiDesc = "外部考勤新增";
Rest rest = Rest.ok(busiDesc + "成功!");
try {
......@@ -80,7 +81,7 @@ public class ApiWebPerformController extends AbstractBaseController<PerformReq>
@PostMapping("review/save")
@UnAuth
public Rest<Void> reviewSave(@RequestBody ReviewSaveReq req) {
log.info("web Api req==>{}", JSON.toJSONString(req));
String busiDesc = "外部评价新增";
Rest rest = Rest.ok(busiDesc + "成功!");
try {
......@@ -105,7 +106,7 @@ public class ApiWebPerformController extends AbstractBaseController<PerformReq>
@PostMapping("complain/save")
@UnAuth
public Rest<Void> complainSave(@RequestBody ComplainSaveReq req) {
log.info("web Api req==>{}", JSON.toJSONString(req));
String busiDesc = "外部投诉新增";
Rest rest = Rest.ok(busiDesc + "成功!");
try {
......@@ -130,7 +131,7 @@ public class ApiWebPerformController extends AbstractBaseController<PerformReq>
@PostMapping("gowork/save")
@UnAuth
public Rest<Void> goworkSave(@RequestBody GoWorkSaveReq req) {
log.info("web Api req==>{}", JSON.toJSONString(req));
String busiDesc = "外部办件新增";
Rest rest = Rest.ok(busiDesc + "成功!");
try {
......@@ -156,6 +157,7 @@ public class ApiWebPerformController extends AbstractBaseController<PerformReq>
@UnAuth
public Rest<Void> effectSave(@RequestBody EffectSaveReq req) {
log.info("web Api req==>{}", JSON.toJSONString(req));
String busiDesc = "外部效能新增";
Rest rest = Rest.ok(busiDesc + "成功!");
try {
......@@ -180,7 +182,7 @@ public class ApiWebPerformController extends AbstractBaseController<PerformReq>
@PostMapping("other/save")
@UnAuth
public Rest<Void> otherSave(@RequestBody OtherSaveReq req) {
log.info("web Api req==>{}", JSON.toJSONString(req));
String busiDesc = "外部其它绩效新增";
Rest rest = Rest.ok(busiDesc + "成功!");
try {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment