whycrzg
2021-02-23 351b9a53cb9ecebdf8f79db0117f540d9c42c2a4
src/main/java/com/fgkj/controller/Ld9/BadLd9_mon_flagController.java
@@ -4,22 +4,29 @@
import com.fgkj.dto.ServiceModel;
import com.fgkj.services.Ld9.BadLd9_mon_flagService;
import io.swagger.annotations.Api;
import org.springframework.beans.factory.annotation.Autowired;
import io.swagger.annotations.ApiOperation;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import javax.annotation.Resource;
/**
 * TODO 接口暂未使用
 */
@RequestMapping("BadLd9MonFlag")
@RestController
@Api
@Api(tags = "BadLd9MonFlag接口")
public class BadLd9_mon_flagController{
   @Autowired
   @Resource
   private BadLd9_mon_flagService service;
   //往标识表中插入一笔数据
   @PostMapping("/")
   @ApiOperation(notes = "TODO 接口暂未使用",value="往标识表中插入一笔数据")
   public ServiceModel add(@RequestBody BadLd9_mon_flag monflag) {
      // BadLd9_mon_flag monflag = getGson().fromJson(json, BadLd9_mon_flag.class);
      ServiceModel model = service.add(monflag);