目录
1. saveXxxx / saveBatchXxxx / insertXxxx
2. deleteXxxx / deleteBatchXxxx
3. updateXxxx / updateBatchXxxx
4. getXxxxList / getXxxxPage / getListByParams / getListByConditions
5. queryXxxx / queryXxxxDetail / queryXxxxList / queryXxxxPage
6. queryListByConditions / queryPageByConditions
1. 数据展示 view
1. 通用常规查询数据展示
1. ResultVO 结果集数据为 null
的显示问题
1. mysql 查询数据为 null , 把 null 改为 0 ( 具体方法 , 简单易懂 )
语法 : (case when ifnull(要查找的字段) then 0 else 要查找的字段 end)
2. entity 属性 添加默认值 ( daiding )
2. 命名规范
1. saveXxxx / saveBatchXxxx / insertXxxx
@PostMapping
@PostMapping(“/batch”)
2. deleteXxxx / deleteBatchXxxx
@DeleteMapping query 路径
@DeleteMapping("/{id}") path 路径
@DeleteMapping("/batch/{id}") path 路径
3. updateXxxx / updateBatchXxxx
@PutMapping
@PutMapping(“/batch”)
@PutMapping(“/status”)
@PutMapping(“/trd/status”)
@PutMapping(“/trd/level”)
@PutMapping(“/trd/position”)
4. getXxxxList / getXxxxPage / getListByParams / getListByConditions
@GetMapping("/{id}")
@GetMapping("/list")
@GetMapping("/list/params")
@GetMapping("/page")
@GetMapping("/page/params")