Compare commits
No commits in common. "f158d87798ee8514e53b874c697efb1def8aa940" and "c490ec515f1eb78ed21c9e9b5661ea88573af112" have entirely different histories.
f158d87798
...
c490ec515f
|
|
@ -38,7 +38,6 @@ public class BmProjectLotController extends BaseController {
|
||||||
*/
|
*/
|
||||||
@ApiOperation(value = "获取标段工程项目")
|
@ApiOperation(value = "获取标段工程项目")
|
||||||
@GetMapping("/projectLotAll")
|
@GetMapping("/projectLotAll")
|
||||||
@RequiresPermissions("section:list")
|
|
||||||
public TableDataInfo getProjectLotAll(BmProjectLot bmProjectLot) {
|
public TableDataInfo getProjectLotAll(BmProjectLot bmProjectLot) {
|
||||||
startPage();
|
startPage();
|
||||||
List<BmProjectLot> list = bmProjectLotService.getProjectLotAll(bmProjectLot);
|
List<BmProjectLot> list = bmProjectLotService.getProjectLotAll(bmProjectLot);
|
||||||
|
|
@ -65,7 +64,6 @@ public class BmProjectLotController extends BaseController {
|
||||||
@ApiOperation("新增标段工程项目")
|
@ApiOperation("新增标段工程项目")
|
||||||
@Log(title = "参数管理", businessType = BusinessType.INSERT)
|
@Log(title = "参数管理", businessType = BusinessType.INSERT)
|
||||||
@PostMapping
|
@PostMapping
|
||||||
@RequiresPermissions("section:list:add")
|
|
||||||
public AjaxResult projectLotAdd(@Validated @RequestBody BmProjectLot bmProjectLot) {
|
public AjaxResult projectLotAdd(@Validated @RequestBody BmProjectLot bmProjectLot) {
|
||||||
return bmProjectLotService.projectLotAdd(bmProjectLot);
|
return bmProjectLotService.projectLotAdd(bmProjectLot);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,6 @@ public class BmUnitInfoController extends BaseController{
|
||||||
*/
|
*/
|
||||||
@ApiOperation(value = "获取往来单位列表")
|
@ApiOperation(value = "获取往来单位列表")
|
||||||
@GetMapping("/unitInfoAll")
|
@GetMapping("/unitInfoAll")
|
||||||
@RequiresPermissions("comeAndGo:list")
|
|
||||||
public TableDataInfo getUnitInfoAll(BmUnitInfo bmUnitInfo)
|
public TableDataInfo getUnitInfoAll(BmUnitInfo bmUnitInfo)
|
||||||
{
|
{
|
||||||
startPage();
|
startPage();
|
||||||
|
|
@ -106,7 +105,6 @@ public class BmUnitInfoController extends BaseController{
|
||||||
@ApiOperation(value = "新增往来单位")
|
@ApiOperation(value = "新增往来单位")
|
||||||
@Log(title = "参数管理", businessType = BusinessType.INSERT)
|
@Log(title = "参数管理", businessType = BusinessType.INSERT)
|
||||||
@PostMapping
|
@PostMapping
|
||||||
@RequiresPermissions("comeAndGo:list:add")
|
|
||||||
public AjaxResult unitInfoAdd(@Validated @RequestBody BmUnitInfo bmUnitInfo)
|
public AjaxResult unitInfoAdd(@Validated @RequestBody BmUnitInfo bmUnitInfo)
|
||||||
{
|
{
|
||||||
log.info("新增往来单位参数:{}", bmUnitInfo);
|
log.info("新增往来单位参数:{}", bmUnitInfo);
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,6 @@ public class SysDicController extends BaseController
|
||||||
*/
|
*/
|
||||||
@ApiOperation(value = "查询数据字典列表")
|
@ApiOperation(value = "查询数据字典列表")
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
@RequiresPermissions("system:dict:query")
|
|
||||||
public TableDataInfo list(SysDic sysDic)
|
public TableDataInfo list(SysDic sysDic)
|
||||||
{
|
{
|
||||||
startPage();
|
startPage();
|
||||||
|
|
@ -114,7 +113,6 @@ public class SysDicController extends BaseController
|
||||||
@ApiOperation(value = "新增数据字典")
|
@ApiOperation(value = "新增数据字典")
|
||||||
@Log(title = "数据字典", businessType = BusinessType.INSERT)
|
@Log(title = "数据字典", businessType = BusinessType.INSERT)
|
||||||
@PostMapping
|
@PostMapping
|
||||||
@RequiresPermissions("system:dict:add")
|
|
||||||
public AjaxResult add(@RequestBody SysDic sysDic)
|
public AjaxResult add(@RequestBody SysDic sysDic)
|
||||||
{
|
{
|
||||||
return sysDicService.insertSysDic(sysDic);
|
return sysDicService.insertSysDic(sysDic);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue