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

修改考勤汇总

parent c2308969
package com.mortals.xhx.busiz.h5.web; package com.mortals.xhx.busiz.h5.web;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject; import com.alibaba.fastjson.JSONObject;
import com.mortals.framework.annotation.UnAuth; import com.mortals.framework.annotation.UnAuth;
import com.mortals.framework.common.Rest; import com.mortals.framework.common.Rest;
...@@ -55,7 +56,7 @@ public class ApiWebPerformController extends AbstractBaseController<PerformReq> ...@@ -55,7 +56,7 @@ public class ApiWebPerformController extends AbstractBaseController<PerformReq>
@PostMapping("attend/save") @PostMapping("attend/save")
@UnAuth @UnAuth
public Rest<Void> attendSave(@RequestBody AttendSaveReq req) { public Rest<Void> attendSave(@RequestBody AttendSaveReq req) {
log.info("web Api req==>{}", JSON.toJSONString(req));
String busiDesc = "外部考勤新增"; String busiDesc = "外部考勤新增";
Rest rest = Rest.ok(busiDesc + "成功!"); Rest rest = Rest.ok(busiDesc + "成功!");
try { try {
...@@ -80,7 +81,7 @@ public class ApiWebPerformController extends AbstractBaseController<PerformReq> ...@@ -80,7 +81,7 @@ public class ApiWebPerformController extends AbstractBaseController<PerformReq>
@PostMapping("review/save") @PostMapping("review/save")
@UnAuth @UnAuth
public Rest<Void> reviewSave(@RequestBody ReviewSaveReq req) { public Rest<Void> reviewSave(@RequestBody ReviewSaveReq req) {
log.info("web Api req==>{}", JSON.toJSONString(req));
String busiDesc = "外部评价新增"; String busiDesc = "外部评价新增";
Rest rest = Rest.ok(busiDesc + "成功!"); Rest rest = Rest.ok(busiDesc + "成功!");
try { try {
...@@ -105,7 +106,7 @@ public class ApiWebPerformController extends AbstractBaseController<PerformReq> ...@@ -105,7 +106,7 @@ public class ApiWebPerformController extends AbstractBaseController<PerformReq>
@PostMapping("complain/save") @PostMapping("complain/save")
@UnAuth @UnAuth
public Rest<Void> complainSave(@RequestBody ComplainSaveReq req) { public Rest<Void> complainSave(@RequestBody ComplainSaveReq req) {
log.info("web Api req==>{}", JSON.toJSONString(req));
String busiDesc = "外部投诉新增"; String busiDesc = "外部投诉新增";
Rest rest = Rest.ok(busiDesc + "成功!"); Rest rest = Rest.ok(busiDesc + "成功!");
try { try {
...@@ -130,7 +131,7 @@ public class ApiWebPerformController extends AbstractBaseController<PerformReq> ...@@ -130,7 +131,7 @@ public class ApiWebPerformController extends AbstractBaseController<PerformReq>
@PostMapping("gowork/save") @PostMapping("gowork/save")
@UnAuth @UnAuth
public Rest<Void> goworkSave(@RequestBody GoWorkSaveReq req) { public Rest<Void> goworkSave(@RequestBody GoWorkSaveReq req) {
log.info("web Api req==>{}", JSON.toJSONString(req));
String busiDesc = "外部办件新增"; String busiDesc = "外部办件新增";
Rest rest = Rest.ok(busiDesc + "成功!"); Rest rest = Rest.ok(busiDesc + "成功!");
try { try {
...@@ -156,6 +157,7 @@ public class ApiWebPerformController extends AbstractBaseController<PerformReq> ...@@ -156,6 +157,7 @@ public class ApiWebPerformController extends AbstractBaseController<PerformReq>
@UnAuth @UnAuth
public Rest<Void> effectSave(@RequestBody EffectSaveReq req) { public Rest<Void> effectSave(@RequestBody EffectSaveReq req) {
log.info("web Api req==>{}", JSON.toJSONString(req));
String busiDesc = "外部效能新增"; String busiDesc = "外部效能新增";
Rest rest = Rest.ok(busiDesc + "成功!"); Rest rest = Rest.ok(busiDesc + "成功!");
try { try {
...@@ -180,7 +182,7 @@ public class ApiWebPerformController extends AbstractBaseController<PerformReq> ...@@ -180,7 +182,7 @@ public class ApiWebPerformController extends AbstractBaseController<PerformReq>
@PostMapping("other/save") @PostMapping("other/save")
@UnAuth @UnAuth
public Rest<Void> otherSave(@RequestBody OtherSaveReq req) { public Rest<Void> otherSave(@RequestBody OtherSaveReq req) {
log.info("web Api req==>{}", JSON.toJSONString(req));
String busiDesc = "外部其它绩效新增"; String busiDesc = "外部其它绩效新增";
Rest rest = Rest.ok(busiDesc + "成功!"); Rest rest = Rest.ok(busiDesc + "成功!");
try { 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