|
|
@@ -41,7 +41,7 @@ public class DyeHourLineController extends BaseController{
|
|
|
* 查询产线小时统计数据列表
|
|
|
*/
|
|
|
@ApiOperation("查询产线小时统计数据列表")
|
|
|
- @PreAuthorize("@ss.hasPermi('dye:line:list')")
|
|
|
+ // @PreAuthorize("@ss.hasPermi('dye:line:list')")
|
|
|
@GetMapping("/list")
|
|
|
public TableDataInfo list(DyeHourLine dyeHourLine)
|
|
|
{
|
|
|
@@ -54,7 +54,7 @@ public class DyeHourLineController extends BaseController{
|
|
|
* 导出产线小时统计数据列表
|
|
|
*/
|
|
|
@ApiOperation("导出产线小时统计数据列表")
|
|
|
- @PreAuthorize("@ss.hasPermi('dye:line:export')")
|
|
|
+ // @PreAuthorize("@ss.hasPermi('dye:line:export')")
|
|
|
@Log(title = "产线小时统计数据", businessType = BusinessType.EXPORT)
|
|
|
@PostMapping("/export")
|
|
|
public void export(HttpServletResponse response, DyeHourLine dyeHourLine)
|
|
|
@@ -68,7 +68,7 @@ public class DyeHourLineController extends BaseController{
|
|
|
* 获取产线小时统计数据详细信息
|
|
|
*/
|
|
|
@ApiOperation("获取产线小时统计数据详细信息")
|
|
|
- @PreAuthorize("@ss.hasPermi('dye:line:query')")
|
|
|
+ // @PreAuthorize("@ss.hasPermi('dye:line:query')")
|
|
|
@GetMapping(value = "/{hourLineId}")
|
|
|
public AjaxResult getInfo(@PathVariable("hourLineId") Long hourLineId)
|
|
|
{
|
|
|
@@ -79,7 +79,7 @@ public class DyeHourLineController extends BaseController{
|
|
|
* 新增产线小时统计数据
|
|
|
*/
|
|
|
@ApiOperation("新增产线小时统计数据")
|
|
|
- @PreAuthorize("@ss.hasPermi('dye:line:add')")
|
|
|
+ // @PreAuthorize("@ss.hasPermi('dye:line:add')")
|
|
|
@Log(title = "产线小时统计数据", businessType = BusinessType.INSERT)
|
|
|
@PostMapping
|
|
|
public AjaxResult add(@RequestBody DyeHourLine dyeHourLine)
|
|
|
@@ -91,7 +91,7 @@ public class DyeHourLineController extends BaseController{
|
|
|
* 修改产线小时统计数据
|
|
|
*/
|
|
|
@ApiOperation("修改产线小时统计数据")
|
|
|
- @PreAuthorize("@ss.hasPermi('dye:line:edit')")
|
|
|
+ // @PreAuthorize("@ss.hasPermi('dye:line:edit')")
|
|
|
@Log(title = "产线小时统计数据", businessType = BusinessType.UPDATE)
|
|
|
@PutMapping
|
|
|
public AjaxResult edit(@RequestBody DyeHourLine dyeHourLine)
|
|
|
@@ -103,7 +103,7 @@ public class DyeHourLineController extends BaseController{
|
|
|
* 删除产线小时统计数据
|
|
|
*/
|
|
|
@ApiOperation("删除产线小时统计数据")
|
|
|
- @PreAuthorize("@ss.hasPermi('dye:line:remove')")
|
|
|
+ // @PreAuthorize("@ss.hasPermi('dye:line:remove')")
|
|
|
@Log(title = "产线小时统计数据", businessType = BusinessType.DELETE)
|
|
|
@DeleteMapping("/{hourLineIds}")
|
|
|
public AjaxResult remove(@PathVariable Long[] hourLineIds)
|