摘要:
首先我们在名为MSG的服务中定义一个简单的方法 @RestController public class ServerController { @GetMapping("/msg") public String msg() { return "this is a msg"; } } 我们需要在另一个 阅读全文
摘要:
DTO的写法 package com.msb.dongbao.pms.model.dto; import com.msb.dongbao.pms.model.entity.Product; import io.swagger.annotations.ApiModel; import io.swagg 阅读全文