|
@@ -1,20 +1,17 @@
|
|
|
package com.ym.mec.web.controller;
|
|
|
|
|
|
+import com.ym.mec.biz.dal.entity.VipGroupDefaultClassesUnitPrice;
|
|
|
+import com.ym.mec.biz.service.VipGroupDefaultClassesUnitPriceService;
|
|
|
+import com.ym.mec.common.controller.BaseController;
|
|
|
import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
-
|
|
|
-import java.util.Date;
|
|
|
-
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
-import org.springframework.http.MediaType;
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
-import com.ym.mec.biz.dal.entity.VipGroupDefaultClassesUnitPrice;
|
|
|
-import com.ym.mec.biz.service.VipGroupDefaultClassesUnitPriceService;
|
|
|
-import com.ym.mec.common.controller.BaseController;
|
|
|
+import java.util.Date;
|
|
|
|
|
|
@Api(tags = "vip课默认单价")
|
|
|
@RequestMapping("vipGroupDefaultClassesUnitPrice")
|
|
@@ -25,19 +22,19 @@ public class VipGroupDefaultClassesUnitPriceController extends BaseController {
|
|
|
private VipGroupDefaultClassesUnitPriceService vipGroupDefaultClassesUnitPriceService;
|
|
|
|
|
|
@ApiOperation("单查询")
|
|
|
- @GetMapping(value = "/query", consumes = MediaType.APPLICATION_FORM_URLENCODED_VALUE, produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
|
|
|
+ @GetMapping(value = "/query")
|
|
|
public Object query(int id) {
|
|
|
return succeed(vipGroupDefaultClassesUnitPriceService.get(id));
|
|
|
}
|
|
|
|
|
|
@ApiOperation("全查询")
|
|
|
- @GetMapping(value = "/queryAll", consumes = MediaType.APPLICATION_FORM_URLENCODED_VALUE, produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
|
|
|
+ @GetMapping(value = "/queryAll")
|
|
|
public Object queryAll() {
|
|
|
return succeed(vipGroupDefaultClassesUnitPriceService.findAll(null));
|
|
|
}
|
|
|
|
|
|
@ApiOperation("新增")
|
|
|
- @PostMapping(value = "/add", consumes = MediaType.APPLICATION_FORM_URLENCODED_VALUE, produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
|
|
|
+ @PostMapping(value = "/add")
|
|
|
public Object add(VipGroupDefaultClassesUnitPrice vipGroupDefaultClassesUnitPrice) {
|
|
|
Date date = new Date();
|
|
|
vipGroupDefaultClassesUnitPrice.setCreateTime(date);
|
|
@@ -47,7 +44,7 @@ public class VipGroupDefaultClassesUnitPriceController extends BaseController {
|
|
|
}
|
|
|
|
|
|
@ApiOperation("修改")
|
|
|
- @PostMapping(value = "/update", consumes = MediaType.APPLICATION_FORM_URLENCODED_VALUE, produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
|
|
|
+ @PostMapping(value = "/update")
|
|
|
public Object update(VipGroupDefaultClassesUnitPrice vipGroupDefaultClassesUnitPrice) {
|
|
|
Date date = new Date();
|
|
|
vipGroupDefaultClassesUnitPrice.setUpdateTime(date);
|
|
@@ -56,7 +53,7 @@ public class VipGroupDefaultClassesUnitPriceController extends BaseController {
|
|
|
}
|
|
|
|
|
|
@ApiOperation("删除")
|
|
|
- @PostMapping(value = "/delete", consumes = MediaType.APPLICATION_FORM_URLENCODED_VALUE, produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
|
|
|
+ @PostMapping(value = "/delete")
|
|
|
public Object delete(int id) {
|
|
|
vipGroupDefaultClassesUnitPriceService.delete(id);
|
|
|
return succeed();
|