31 lines
896 B
Java
31 lines
896 B
Java
package com.jsh.erp.controller;
|
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
import com.jsh.erp.constants.ExceptionConstants;
|
|
import com.jsh.erp.exception.BusinessRunTimeException;
|
|
import com.jsh.erp.service.material.MaterialService;
|
|
import com.jsh.erp.service.materialProperty.MaterialPropertyService;
|
|
import io.swagger.annotations.Api;
|
|
import org.slf4j.Logger;
|
|
import org.slf4j.LoggerFactory;
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
/**
|
|
* Description
|
|
*
|
|
* @Author: qiankunpingtai
|
|
* @Date: 2019/3/29 15:24
|
|
*/
|
|
@RestController
|
|
@RequestMapping(value = "/materialProperty")
|
|
@Api(tags = {"商品扩展字段"})
|
|
public class MaterialPropertyController {
|
|
|
|
|
|
}
|