从您的 json 数据中,您的 DTO 可能是
PropertyDTO{
long userloginid;
String propertyname;
long propertyid;
}
所以你的 API 看起来像
@RestController
@RequestMapping(value = "/property")
public class PropertyController{
@RequestMapping(method = RequestMethod.GET)
public PropertyDTO get(){
return null;
}
@RequestMapping(method = RequestMethod.PUT)
public Boolean update(@RequestBody PropertyDTO dto){
return true;
}
@RequestMapping(method = RequestMethod.POST)
public Boolean insert(@RequestBody PropertyDTO dto){
return true;
}
精慕HU
相关分类