|
|
|
@ -38,7 +38,7 @@ public class MesUnitPriceReportController extends BaseController {
|
|
|
|
|
/**
|
|
|
|
|
* 查询计件工资统计列表
|
|
|
|
|
*/
|
|
|
|
|
@RequiresPermissions("system:report:list")
|
|
|
|
|
@RequiresPermissions("unitPriceReport:report:list")
|
|
|
|
|
@GetMapping("/list")
|
|
|
|
|
public TableDataInfo list(MesUnitpriceReport mesUnitpriceReport) {
|
|
|
|
|
startPage();
|
|
|
|
@ -49,7 +49,7 @@ public class MesUnitPriceReportController extends BaseController {
|
|
|
|
|
/**
|
|
|
|
|
* 导出计件工资统计列表
|
|
|
|
|
*/
|
|
|
|
|
@RequiresPermissions("system:report:export")
|
|
|
|
|
@RequiresPermissions("unitPriceReport:report:export")
|
|
|
|
|
@Log(title = "计件工资统计", businessType = BusinessType.EXPORT)
|
|
|
|
|
@PostMapping("/export")
|
|
|
|
|
public void export(HttpServletResponse response, MesUnitpriceReport mesUnitpriceReport) {
|
|
|
|
@ -61,7 +61,7 @@ public class MesUnitPriceReportController extends BaseController {
|
|
|
|
|
/**
|
|
|
|
|
* 获取计件工资统计详细信息
|
|
|
|
|
*/
|
|
|
|
|
@RequiresPermissions("system:report:query")
|
|
|
|
|
@RequiresPermissions("unitPriceReport:report:query")
|
|
|
|
|
@GetMapping(value = "/{id}")
|
|
|
|
|
public AjaxResult getInfo(@PathVariable("id") String id) {
|
|
|
|
|
return success(mesUnitpriceReportService.selectMesUnitpriceReportById(id));
|
|
|
|
@ -70,7 +70,7 @@ public class MesUnitPriceReportController extends BaseController {
|
|
|
|
|
/**
|
|
|
|
|
* 新增计件工资统计
|
|
|
|
|
*/
|
|
|
|
|
@RequiresPermissions("system:report:add")
|
|
|
|
|
@RequiresPermissions("unitPriceReport:report:add")
|
|
|
|
|
@Log(title = "计件工资统计", businessType = BusinessType.INSERT)
|
|
|
|
|
@PostMapping
|
|
|
|
|
public AjaxResult add(@RequestBody MesUnitpriceReport mesUnitpriceReport) {
|
|
|
|
@ -80,7 +80,7 @@ public class MesUnitPriceReportController extends BaseController {
|
|
|
|
|
/**
|
|
|
|
|
* 修改计件工资统计
|
|
|
|
|
*/
|
|
|
|
|
@RequiresPermissions("system:report:edit")
|
|
|
|
|
@RequiresPermissions("unitPriceReport:report:edit")
|
|
|
|
|
@Log(title = "计件工资统计", businessType = BusinessType.UPDATE)
|
|
|
|
|
@PutMapping
|
|
|
|
|
public AjaxResult edit(@RequestBody MesUnitpriceReport mesUnitpriceReport) {
|
|
|
|
@ -90,7 +90,7 @@ public class MesUnitPriceReportController extends BaseController {
|
|
|
|
|
/**
|
|
|
|
|
* 删除计件工资统计
|
|
|
|
|
*/
|
|
|
|
|
@RequiresPermissions("system:report:remove")
|
|
|
|
|
@RequiresPermissions("unitPriceReport:report:remove")
|
|
|
|
|
@Log(title = "计件工资统计", businessType = BusinessType.DELETE)
|
|
|
|
|
@DeleteMapping("/{ids}")
|
|
|
|
|
public AjaxResult remove(@PathVariable String[] ids) {
|
|
|
|
|