|
@@ -41,7 +41,7 @@ public class TwinCalcDayBpController extends BaseController{
|
|
|
* 查询白坯库日统计数据列表
|
|
|
*/
|
|
|
@ApiOperation("查询白坯库日统计数据列表")
|
|
|
- @PreAuthorize("@ss.hasPermi('inventory:bpDay:list')")
|
|
|
+ //@PreAuthorize("@ss.hasPermi('inventory:bpDay:list')")
|
|
|
@GetMapping("/list")
|
|
|
public TableDataInfo list(TwinCalcDayBp twinCalcDayBp)
|
|
|
{
|
|
@@ -54,7 +54,7 @@ public class TwinCalcDayBpController extends BaseController{
|
|
|
* 导出白坯库日统计数据列表
|
|
|
*/
|
|
|
@ApiOperation("导出白坯库日统计数据列表")
|
|
|
- @PreAuthorize("@ss.hasPermi('inventory:bpDay:export')")
|
|
|
+ //@PreAuthorize("@ss.hasPermi('inventory:bpDay:export')")
|
|
|
@Log(title = "白坯库日统计数据", businessType = BusinessType.EXPORT)
|
|
|
@PostMapping("/export")
|
|
|
public void export(HttpServletResponse response, TwinCalcDayBp twinCalcDayBp)
|
|
@@ -68,7 +68,7 @@ public class TwinCalcDayBpController extends BaseController{
|
|
|
* 获取白坯库日统计数据详细信息
|
|
|
*/
|
|
|
@ApiOperation("获取白坯库日统计数据详细信息")
|
|
|
- @PreAuthorize("@ss.hasPermi('inventory:bpDay:query')")
|
|
|
+ //@PreAuthorize("@ss.hasPermi('inventory:bpDay:query')")
|
|
|
@GetMapping(value = "/{id}")
|
|
|
public AjaxResult getInfo(@PathVariable("id") Long id)
|
|
|
{
|
|
@@ -79,7 +79,7 @@ public class TwinCalcDayBpController extends BaseController{
|
|
|
* 新增白坯库日统计数据
|
|
|
*/
|
|
|
@ApiOperation("新增白坯库日统计数据")
|
|
|
- @PreAuthorize("@ss.hasPermi('inventory:bpDay:add')")
|
|
|
+ //@PreAuthorize("@ss.hasPermi('inventory:bpDay:add')")
|
|
|
@Log(title = "白坯库日统计数据", businessType = BusinessType.INSERT)
|
|
|
@PostMapping
|
|
|
public AjaxResult add(@RequestBody TwinCalcDayBp twinCalcDayBp)
|
|
@@ -91,7 +91,7 @@ public class TwinCalcDayBpController extends BaseController{
|
|
|
* 修改白坯库日统计数据
|
|
|
*/
|
|
|
@ApiOperation("修改白坯库日统计数据")
|
|
|
- @PreAuthorize("@ss.hasPermi('inventory:bpDay:edit')")
|
|
|
+ //@PreAuthorize("@ss.hasPermi('inventory:bpDay:edit')")
|
|
|
@Log(title = "白坯库日统计数据", businessType = BusinessType.UPDATE)
|
|
|
@PutMapping
|
|
|
public AjaxResult edit(@RequestBody TwinCalcDayBp twinCalcDayBp)
|
|
@@ -103,7 +103,7 @@ public class TwinCalcDayBpController extends BaseController{
|
|
|
* 删除白坯库日统计数据
|
|
|
*/
|
|
|
@ApiOperation("删除白坯库日统计数据")
|
|
|
- @PreAuthorize("@ss.hasPermi('inventory:bpDay:remove')")
|
|
|
+ //@PreAuthorize("@ss.hasPermi('inventory:bpDay:remove')")
|
|
|
@Log(title = "白坯库日统计数据", businessType = BusinessType.DELETE)
|
|
|
@DeleteMapping("/{ids}")
|
|
|
public AjaxResult remove(@PathVariable Long[] ids)
|