|
|
@@ -68,6 +68,15 @@ public class GoodsSkuController{
|
|
|
return this.getService().disable(id);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * @desc : 启用
|
|
|
+ * @author : 王英杰
|
|
|
+ * @date : 2023/1/4 9:39
|
|
|
+ */
|
|
|
+ @PostMapping("enable/{id}")
|
|
|
+ public ResponseResultVO<Boolean> enable(@PathVariable String id) {
|
|
|
+ return this.getService().enable(id);
|
|
|
+ }
|
|
|
|
|
|
/**
|
|
|
* @desc : 新建
|