|
@@ -385,6 +385,19 @@ public class YeWeiHuiController {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ @PostMapping("/whepi/yeweihui/tgStatus")
|
|
|
+ public Model whepiYeweihuiTgStatus(@Pd(name = "jmId") Long jmId, @Pd(name = "status", required = false, defaultValue = "0") Long status, @Pd(name = "remark", required = false) String remark) {
|
|
|
+
|
|
|
+ Integer success = jmTuangouService.updateRemarkByJmId(jmId, status, remark);
|
|
|
+
|
|
|
+ if (success == 1) {
|
|
|
+ return Model.newSuccess("操作成功");
|
|
|
+ }
|
|
|
+ else {
|
|
|
+ return Model.newFail("操作失败");
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
@PostMapping("/yeweihui/tuangou/list/query.json")
|
|
|
public Model queryTuangouListByTitle(@Pd(name = "userId") Long userId, @Pd(name = "title", required = false) String title) {
|
|
|
|