移动端和PC弹出框相关权限处理
This commit is contained in:
parent
cba5beaae9
commit
61e7111bea
Binary file not shown.
@ -39,7 +39,6 @@ public class CalPlanTeamController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询计划班组列表
|
* 查询计划班组列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:cal:calplan:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(CalPlanTeam calPlanTeam)
|
public TableDataInfo list(CalPlanTeam calPlanTeam)
|
||||||
{
|
{
|
||||||
|
@ -44,7 +44,6 @@ public class CalShiftController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询计划班次列表
|
* 查询计划班次列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:cal:calplan:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(CalShift calShift)
|
public TableDataInfo list(CalShift calShift)
|
||||||
{
|
{
|
||||||
|
@ -43,7 +43,6 @@ public class CalTeamController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询班组列表
|
* 查询班组列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:cal:team:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(CalTeam calTeam)
|
public TableDataInfo list(CalTeam calTeam)
|
||||||
{
|
{
|
||||||
@ -55,7 +54,6 @@ public class CalTeamController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询所有班组列表
|
* 查询所有班组列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:cal:team:list')")
|
|
||||||
@GetMapping("/listAll")
|
@GetMapping("/listAll")
|
||||||
public AjaxResult listAll(){
|
public AjaxResult listAll(){
|
||||||
CalTeam calTeam= new CalTeam();
|
CalTeam calTeam= new CalTeam();
|
||||||
|
@ -39,7 +39,6 @@ public class CalTeamMemberController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询班组成员列表
|
* 查询班组成员列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:cal:team:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(CalTeamMember calTeamMember)
|
public TableDataInfo list(CalTeamMember calTeamMember)
|
||||||
{
|
{
|
||||||
|
@ -39,7 +39,6 @@ public class DvCheckMachineryController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询点检设备列表
|
* 查询点检设备列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:dv:checkplan:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(DvCheckMachinery dvCheckMachinery)
|
public TableDataInfo list(DvCheckMachinery dvCheckMachinery)
|
||||||
{
|
{
|
||||||
|
@ -39,7 +39,6 @@ public class DvCheckSubjectController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询点检项目列表
|
* 查询点检项目列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:dv:checkplan:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(DvCheckSubject dvCheckSubject)
|
public TableDataInfo list(DvCheckSubject dvCheckSubject)
|
||||||
{
|
{
|
||||||
|
@ -43,7 +43,6 @@ public class DvMachineryController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询设备列表
|
* 查询设备列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:dv:machinery:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(DvMachinery dvMachinery)
|
public TableDataInfo list(DvMachinery dvMachinery)
|
||||||
{
|
{
|
||||||
|
@ -47,7 +47,6 @@ public class DvMachineryTypeController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询设备类型列表
|
* 查询设备类型列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:dv:machinerytype:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public AjaxResult list(DvMachineryType dvMachineryType)
|
public AjaxResult list(DvMachineryType dvMachineryType)
|
||||||
{
|
{
|
||||||
|
@ -39,7 +39,6 @@ public class DvSubjectController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询设备点检保养项目列表
|
* 查询设备点检保养项目列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:dv:dvsubject:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(DvSubject dvSubject)
|
public TableDataInfo list(DvSubject dvSubject)
|
||||||
{
|
{
|
||||||
|
@ -30,7 +30,6 @@ public class ItemTypeController extends BaseController {
|
|||||||
* @param itemType
|
* @param itemType
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:md:itemtype:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public AjaxResult list(ItemType itemType){
|
public AjaxResult list(ItemType itemType){
|
||||||
List<ItemType> list =iItemTypeService.selectItemTypeList(itemType);
|
List<ItemType> list =iItemTypeService.selectItemTypeList(itemType);
|
||||||
@ -42,7 +41,6 @@ public class ItemTypeController extends BaseController {
|
|||||||
* @param itemTypeId
|
* @param itemTypeId
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:md:itemtype:list')")
|
|
||||||
@GetMapping("/list/exclude/{itemTypeId}")
|
@GetMapping("/list/exclude/{itemTypeId}")
|
||||||
public AjaxResult excludeChild(@PathVariable(value = "itemTypeId",required = false)Long itemTypeId){
|
public AjaxResult excludeChild(@PathVariable(value = "itemTypeId",required = false)Long itemTypeId){
|
||||||
List<ItemType> list = iItemTypeService.selectItemTypeList(new ItemType());
|
List<ItemType> list = iItemTypeService.selectItemTypeList(new ItemType());
|
||||||
|
@ -43,7 +43,6 @@ public class MdClientController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询客户列表
|
* 查询客户列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:md:client:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(MdClient mdClient)
|
public TableDataInfo list(MdClient mdClient)
|
||||||
{
|
{
|
||||||
|
@ -38,7 +38,6 @@ public class MdItemController extends BaseController {
|
|||||||
* @param mdItem
|
* @param mdItem
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:md:mditem:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(MdItem mdItem){
|
public TableDataInfo list(MdItem mdItem){
|
||||||
startPage();
|
startPage();
|
||||||
|
@ -39,7 +39,6 @@ public class MdProductBomController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询产品BOM关系列表
|
* 查询产品BOM关系列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:md:mditem:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(MdProductBom mdProductBom)
|
public TableDataInfo list(MdProductBom mdProductBom)
|
||||||
{
|
{
|
||||||
|
@ -37,7 +37,6 @@ public class MdProductSipController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询产品SIP列表
|
* 查询产品SIP列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:md:mditem:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(MdProductSip mdProductSip)
|
public TableDataInfo list(MdProductSip mdProductSip)
|
||||||
{
|
{
|
||||||
|
@ -37,7 +37,6 @@ public class MdProductSopController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询产品SOP列表
|
* 查询产品SOP列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:md:mditem:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(MdProductSop mdProdutSop)
|
public TableDataInfo list(MdProductSop mdProdutSop)
|
||||||
{
|
{
|
||||||
|
@ -31,7 +31,6 @@ public class MdUnitMeasureController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询单位列表
|
* 查询单位列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:md:unitmeasure:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(MdUnitMeasure mdUnitMeasure)
|
public TableDataInfo list(MdUnitMeasure mdUnitMeasure)
|
||||||
{
|
{
|
||||||
|
@ -43,7 +43,6 @@ public class MdVendorController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询供应商列表
|
* 查询供应商列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:md:vendor:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(MdVendor mdVendor)
|
public TableDataInfo list(MdVendor mdVendor)
|
||||||
{
|
{
|
||||||
|
@ -39,7 +39,6 @@ public class MdWorkshopController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询车间列表
|
* 查询车间列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:md:workshop:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(MdWorkshop mdWorkshop)
|
public TableDataInfo list(MdWorkshop mdWorkshop)
|
||||||
{
|
{
|
||||||
@ -52,7 +51,6 @@ public class MdWorkshopController extends BaseController
|
|||||||
* 获取所有可用车间
|
* 获取所有可用车间
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:md:workshop:list')")
|
|
||||||
@GetMapping("/listAll")
|
@GetMapping("/listAll")
|
||||||
public AjaxResult listAll(){
|
public AjaxResult listAll(){
|
||||||
MdWorkshop mdWorkshop = new MdWorkshop();
|
MdWorkshop mdWorkshop = new MdWorkshop();
|
||||||
|
@ -78,7 +78,6 @@ public class MdWorkstationController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询工作站列表
|
* 查询工作站列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:md:workstation:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(MdWorkstation mdWorkstation)
|
public TableDataInfo list(MdWorkstation mdWorkstation)
|
||||||
{
|
{
|
||||||
|
@ -45,7 +45,6 @@ public class MdWorkstationMachineController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询设备资源列表
|
* 查询设备资源列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:md:workstation:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(MdWorkstationMachine mdWorkstationMachine)
|
public TableDataInfo list(MdWorkstationMachine mdWorkstationMachine)
|
||||||
{
|
{
|
||||||
|
@ -44,7 +44,6 @@ public class MdWorkstationToolController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询工装夹具资源列表
|
* 查询工装夹具资源列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:md:workstation:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(MdWorkstationTool mdWorkstationTool)
|
public TableDataInfo list(MdWorkstationTool mdWorkstationTool)
|
||||||
{
|
{
|
||||||
|
@ -45,7 +45,6 @@ public class MdWorkstationWorkerController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询人力资源列表
|
* 查询人力资源列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:md:workstation:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(MdWorkstationWorker mdWorkstationWorker)
|
public TableDataInfo list(MdWorkstationWorker mdWorkstationWorker)
|
||||||
{
|
{
|
||||||
|
@ -25,7 +25,6 @@ public class MdClientMobController extends BaseController {
|
|||||||
* 查询客户列表
|
* 查询客户列表
|
||||||
*/
|
*/
|
||||||
@ApiOperation("查询客户清单(分页)")
|
@ApiOperation("查询客户清单(分页)")
|
||||||
@PreAuthorize("@ss.hasPermi('mes:md:client:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(MdClient mdClient)
|
public TableDataInfo list(MdClient mdClient)
|
||||||
{
|
{
|
||||||
|
@ -28,7 +28,6 @@ public class MdItemMobController extends BaseController {
|
|||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
@ApiOperation("查询物料清单(分页)")
|
@ApiOperation("查询物料清单(分页)")
|
||||||
@PreAuthorize("@ss.hasPermi('mes:md:mditem:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(MdItem mdItem){
|
public TableDataInfo list(MdItem mdItem){
|
||||||
startPage();
|
startPage();
|
||||||
|
@ -23,7 +23,6 @@ public class MdProductSOPMobController extends BaseController {
|
|||||||
* 查询产品SOP列表
|
* 查询产品SOP列表
|
||||||
*/
|
*/
|
||||||
@ApiOperation("查询产品SOP信息")
|
@ApiOperation("查询产品SOP信息")
|
||||||
@PreAuthorize("@ss.hasPermi('mes:md:mditem:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public AjaxResult list(MdProductSop mdProdutSop)
|
public AjaxResult list(MdProductSop mdProdutSop)
|
||||||
{
|
{
|
||||||
|
@ -26,7 +26,6 @@ public class MdVendorMobController extends BaseController {
|
|||||||
* 查询供应商列表
|
* 查询供应商列表
|
||||||
*/
|
*/
|
||||||
@ApiOperation("查询供应商清单(分页)")
|
@ApiOperation("查询供应商清单(分页)")
|
||||||
@PreAuthorize("@ss.hasPermi('mes:md:vendor:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(MdVendor mdVendor)
|
public TableDataInfo list(MdVendor mdVendor)
|
||||||
{
|
{
|
||||||
|
@ -80,7 +80,6 @@ public class ProFeedbackController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询生产报工记录列表
|
* 查询生产报工记录列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:pro:feedback:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(ProFeedback proFeedback)
|
public TableDataInfo list(ProFeedback proFeedback)
|
||||||
{
|
{
|
||||||
|
@ -37,7 +37,6 @@ public class ProProcessContentController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询生产工序内容列表
|
* 查询生产工序内容列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:pro:process:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(ProProcessContent proProcessContent)
|
public TableDataInfo list(ProProcessContent proProcessContent)
|
||||||
{
|
{
|
||||||
|
@ -40,7 +40,6 @@ public class ProProcessController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询生产工序列表
|
* 查询生产工序列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:pro:process:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(ProProcess proProcess)
|
public TableDataInfo list(ProProcess proProcess)
|
||||||
{
|
{
|
||||||
|
@ -53,7 +53,6 @@ public class ProRouteController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询工艺路线列表
|
* 查询工艺路线列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:pro:proroute:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(ProRoute proRoute)
|
public TableDataInfo list(ProRoute proRoute)
|
||||||
{
|
{
|
||||||
|
@ -52,7 +52,6 @@ public class ProRouteProcessController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询工艺组成列表
|
* 查询工艺组成列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:pro:proroute:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(ProRouteProcess proRouteProcess)
|
public TableDataInfo list(ProRouteProcess proRouteProcess)
|
||||||
{
|
{
|
||||||
|
@ -39,7 +39,6 @@ public class ProRouteProductBomController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询产品制程物料BOM列表
|
* 查询产品制程物料BOM列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:pro:proroute:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(ProRouteProductBom proRouteProductBom)
|
public TableDataInfo list(ProRouteProductBom proRouteProductBom)
|
||||||
{
|
{
|
||||||
|
@ -46,7 +46,6 @@ public class ProRouteProductController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询产品制程列表
|
* 查询产品制程列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:pro:proroute:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(ProRouteProduct proRouteProduct)
|
public TableDataInfo list(ProRouteProduct proRouteProduct)
|
||||||
{
|
{
|
||||||
|
@ -59,7 +59,6 @@ public class ProTaskController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询生产任务列表
|
* 查询生产任务列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:pro:protask:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(ProTask proTask)
|
public TableDataInfo list(ProTask proTask)
|
||||||
{
|
{
|
||||||
|
@ -41,7 +41,6 @@ public class ProTaskIssueController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询生产任务投料列表
|
* 查询生产任务投料列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:pro:protask:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(ProTaskIssue proTaskIssue)
|
public TableDataInfo list(ProTaskIssue proTaskIssue)
|
||||||
{
|
{
|
||||||
|
@ -37,7 +37,6 @@ public class ProTransConsumeController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询物料消耗记录列表
|
* 查询物料消耗记录列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:pro:transconsume:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(ProTransConsume proTransConsume)
|
public TableDataInfo list(ProTransConsume proTransConsume)
|
||||||
{
|
{
|
||||||
|
@ -43,7 +43,6 @@ public class ProTransOrderController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询流转单列表
|
* 查询流转单列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:pro:transorder:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(ProTransOrder proTransOrder)
|
public TableDataInfo list(ProTransOrder proTransOrder)
|
||||||
{
|
{
|
||||||
|
@ -37,7 +37,6 @@ public class ProWorkorderBomController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询生产工单BOM组成列表
|
* 查询生产工单BOM组成列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:pro:workorder:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(ProWorkorderBom proWorkorderBom)
|
public TableDataInfo list(ProWorkorderBom proWorkorderBom)
|
||||||
{
|
{
|
||||||
|
@ -65,7 +65,6 @@ public class ProWorkorderController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询生产工单列表
|
* 查询生产工单列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:pro:workorder:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(ProWorkorder proWorkorder)
|
public TableDataInfo list(ProWorkorder proWorkorder)
|
||||||
{
|
{
|
||||||
|
@ -92,7 +92,6 @@ public class ProFeedBackMobController extends BaseController {
|
|||||||
* 查询生产报工记录列表
|
* 查询生产报工记录列表
|
||||||
*/
|
*/
|
||||||
@ApiOperation("查询报工单清单-全部")
|
@ApiOperation("查询报工单清单-全部")
|
||||||
@PreAuthorize("@ss.hasPermi('mes:pro:feedback:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(ProFeedback proFeedback)
|
public TableDataInfo list(ProFeedback proFeedback)
|
||||||
{
|
{
|
||||||
@ -104,7 +103,6 @@ public class ProFeedBackMobController extends BaseController {
|
|||||||
* 查询生产报工记录列表
|
* 查询生产报工记录列表
|
||||||
*/
|
*/
|
||||||
@ApiOperation("查询报工单清单-未审批通过的")
|
@ApiOperation("查询报工单清单-未审批通过的")
|
||||||
@PreAuthorize("@ss.hasPermi('mes:pro:feedback:list')")
|
|
||||||
@GetMapping("/listUnApproved")
|
@GetMapping("/listUnApproved")
|
||||||
public TableDataInfo listUnApproved(ProFeedback proFeedback)
|
public TableDataInfo listUnApproved(ProFeedback proFeedback)
|
||||||
{
|
{
|
||||||
@ -123,7 +121,6 @@ public class ProFeedBackMobController extends BaseController {
|
|||||||
* 查询生产报工记录列表
|
* 查询生产报工记录列表
|
||||||
*/
|
*/
|
||||||
@ApiOperation("查询报工单清单-已审批通过的")
|
@ApiOperation("查询报工单清单-已审批通过的")
|
||||||
@PreAuthorize("@ss.hasPermi('mes:pro:feedback:list')")
|
|
||||||
@GetMapping("/listApproved")
|
@GetMapping("/listApproved")
|
||||||
public TableDataInfo listApproved(ProFeedback proFeedback)
|
public TableDataInfo listApproved(ProFeedback proFeedback)
|
||||||
{
|
{
|
||||||
|
@ -79,7 +79,6 @@ public class ProTaskIssueMobController extends BaseController {
|
|||||||
* 查询当前工作站、当前任务可用的的领料清单
|
* 查询当前工作站、当前任务可用的的领料清单
|
||||||
* 如果某个领料单是领出到当前工作站或者当前任务的,则可以查询到
|
* 如果某个领料单是领出到当前工作站或者当前任务的,则可以查询到
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:pro:taskissue:list')")
|
|
||||||
@GetMapping("/getReserveIssueList")
|
@GetMapping("/getReserveIssueList")
|
||||||
public AjaxResult getReserveIssueList(ProTaskIssue proTaskIssue){
|
public AjaxResult getReserveIssueList(ProTaskIssue proTaskIssue){
|
||||||
WmIssueHeader param = new WmIssueHeader();
|
WmIssueHeader param = new WmIssueHeader();
|
||||||
|
@ -59,7 +59,6 @@ public class ProTaskMobController extends BaseController {
|
|||||||
* 查询工作站的生产任务
|
* 查询工作站的生产任务
|
||||||
*/
|
*/
|
||||||
@ApiOperation("查询状态未完成的生产任务接口")
|
@ApiOperation("查询状态未完成的生产任务接口")
|
||||||
@PreAuthorize("@ss.hasPermi('mes:pro:protask:list')")
|
|
||||||
@GetMapping("/getTaskList")
|
@GetMapping("/getTaskList")
|
||||||
public TableDataInfo list(ProTask proTask)
|
public TableDataInfo list(ProTask proTask)
|
||||||
{
|
{
|
||||||
|
@ -43,7 +43,6 @@ public class QcDefectController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询常见缺陷列表
|
* 查询常见缺陷列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:qc:qcdefect:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(QcDefect qcDefect)
|
public TableDataInfo list(QcDefect qcDefect)
|
||||||
{
|
{
|
||||||
|
@ -63,7 +63,6 @@ public class QcDefectRecordController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询检验单缺陷记录列表
|
* 查询检验单缺陷记录列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:qc:defectrecord:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(QcDefectRecord qcDefectRecord)
|
public TableDataInfo list(QcDefectRecord qcDefectRecord)
|
||||||
{
|
{
|
||||||
|
@ -39,7 +39,6 @@ public class QcIndexController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询检测项列表
|
* 查询检测项列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:qc:qcindex:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(QcIndex qcIndex)
|
public TableDataInfo list(QcIndex qcIndex)
|
||||||
{
|
{
|
||||||
|
@ -63,7 +63,6 @@ public class QcIqcController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询来料检验单列表
|
* 查询来料检验单列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:qc:iqc:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(QcIqc qcIqc)
|
public TableDataInfo list(QcIqc qcIqc)
|
||||||
{
|
{
|
||||||
|
@ -61,7 +61,6 @@ public class QcOqcController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询出货检验单列表
|
* 查询出货检验单列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:qc:oqc:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(QcOqc qcOqc)
|
public TableDataInfo list(QcOqc qcOqc)
|
||||||
{
|
{
|
||||||
|
@ -51,7 +51,6 @@ public class QcTemplateController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询检测模板列表
|
* 查询检测模板列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:qc:qctemplate:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(QcTemplate qcTemplate)
|
public TableDataInfo list(QcTemplate qcTemplate)
|
||||||
{
|
{
|
||||||
|
@ -43,7 +43,6 @@ public class QcTemplateIndexController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询检测模板-检测项列表
|
* 查询检测模板-检测项列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:qc:qctemplate:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(QcTemplateIndex qcTemplateIndex)
|
public TableDataInfo list(QcTemplateIndex qcTemplateIndex)
|
||||||
{
|
{
|
||||||
|
@ -39,7 +39,6 @@ public class QcTemplateProductController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询检测模板-产品列表
|
* 查询检测模板-产品列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:qc:qctemplate:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(QcTemplateProduct qcTemplateProduct)
|
public TableDataInfo list(QcTemplateProduct qcTemplateProduct)
|
||||||
{
|
{
|
||||||
|
@ -44,7 +44,6 @@ public class TmToolController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询工装夹具清单列表
|
* 查询工装夹具清单列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:tm:tool:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(TmTool tmTool)
|
public TableDataInfo list(TmTool tmTool)
|
||||||
{
|
{
|
||||||
|
@ -39,7 +39,6 @@ public class TmToolTypeController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询工装夹具类型列表
|
* 查询工装夹具类型列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:tm:tooltype:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(TmToolType tmToolType)
|
public TableDataInfo list(TmToolType tmToolType)
|
||||||
{
|
{
|
||||||
@ -48,7 +47,6 @@ public class TmToolTypeController extends BaseController
|
|||||||
return getDataTable(list);
|
return getDataTable(list);
|
||||||
}
|
}
|
||||||
|
|
||||||
@PreAuthorize("@ss.hasPermi('mes:tm:tooltype:list')")
|
|
||||||
@GetMapping("/listAll")
|
@GetMapping("/listAll")
|
||||||
public AjaxResult listAll(){
|
public AjaxResult listAll(){
|
||||||
TmToolType tmToolType = new TmToolType();
|
TmToolType tmToolType = new TmToolType();
|
||||||
|
@ -32,7 +32,6 @@ public class WmBarcodeController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询条码清单列表
|
* 查询条码清单列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:wm:barcode:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(WmBarcode wmBarcode)
|
public TableDataInfo list(WmBarcode wmBarcode)
|
||||||
{
|
{
|
||||||
|
@ -37,7 +37,6 @@ public class WmMaterialStockController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询库存记录列表
|
* 查询库存记录列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:wm:wmstock:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(WmMaterialStock wmMaterialStock)
|
public TableDataInfo list(WmMaterialStock wmMaterialStock)
|
||||||
{
|
{
|
||||||
|
@ -45,7 +45,6 @@ public class WmPackageController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询装箱单列表
|
* 查询装箱单列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:wm:package:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(WmPackage wmPackage)
|
public TableDataInfo list(WmPackage wmPackage)
|
||||||
{
|
{
|
||||||
|
@ -46,7 +46,6 @@ public class WmSnController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询SN码列表
|
* 查询SN码列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:wm:sn:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(WmSn wmSn)
|
public TableDataInfo list(WmSn wmSn)
|
||||||
{
|
{
|
||||||
@ -58,7 +57,6 @@ public class WmSnController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询SN码列表
|
* 查询SN码列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:wm:sn:list')")
|
|
||||||
@GetMapping("/listSn")
|
@GetMapping("/listSn")
|
||||||
public TableDataInfo listSn(WmSn wmSn)
|
public TableDataInfo listSn(WmSn wmSn)
|
||||||
{
|
{
|
||||||
|
@ -43,7 +43,6 @@ public class WmStorageAreaController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询库位设置列表
|
* 查询库位设置列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:wm:area:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(WmStorageArea wmStorageArea)
|
public TableDataInfo list(WmStorageArea wmStorageArea)
|
||||||
{
|
{
|
||||||
|
@ -48,7 +48,6 @@ public class WmStorageLocationController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询库区设置列表
|
* 查询库区设置列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:wm:location:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(WmStorageLocation wmStorageLocation)
|
public TableDataInfo list(WmStorageLocation wmStorageLocation)
|
||||||
{
|
{
|
||||||
|
@ -52,7 +52,6 @@ public class WmWarehouseController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询仓库设置列表
|
* 查询仓库设置列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:wm:warehouse:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(WmWarehouse wmWarehouse)
|
public TableDataInfo list(WmWarehouse wmWarehouse)
|
||||||
{
|
{
|
||||||
|
@ -44,7 +44,7 @@ public class WmItemRecptLineMobController extends BaseController {
|
|||||||
* 查询物料入库单行列表
|
* 查询物料入库单行列表
|
||||||
*/
|
*/
|
||||||
@ApiOperation("查询采购入库单明细信息接口")
|
@ApiOperation("查询采购入库单明细信息接口")
|
||||||
@PreAuthorize("@ss.hasPermi('mes:wm:itemrecptline:list')")
|
@PreAuthorize("@ss.hasPermi('mes:wm:itemrecpt:list')")
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(WmItemRecptLine wmItemRecptLine)
|
public TableDataInfo list(WmItemRecptLine wmItemRecptLine)
|
||||||
{
|
{
|
||||||
@ -57,7 +57,7 @@ public class WmItemRecptLineMobController extends BaseController {
|
|||||||
* 获取物料入库单行详细信息
|
* 获取物料入库单行详细信息
|
||||||
*/
|
*/
|
||||||
@ApiOperation("查看采购入库单明细信息接口")
|
@ApiOperation("查看采购入库单明细信息接口")
|
||||||
@PreAuthorize("@ss.hasPermi('mes:wm:itemrecptline:query')")
|
@PreAuthorize("@ss.hasPermi('mes:wm:itemrecpt:query')")
|
||||||
@GetMapping(value = "/{lineId}")
|
@GetMapping(value = "/{lineId}")
|
||||||
public AjaxResult getInfo(@PathVariable("lineId") Long lineId)
|
public AjaxResult getInfo(@PathVariable("lineId") Long lineId)
|
||||||
{
|
{
|
||||||
@ -68,7 +68,7 @@ public class WmItemRecptLineMobController extends BaseController {
|
|||||||
* 新增物料入库单行
|
* 新增物料入库单行
|
||||||
*/
|
*/
|
||||||
@ApiOperation("新增采购入库单明细信息接口")
|
@ApiOperation("新增采购入库单明细信息接口")
|
||||||
@PreAuthorize("@ss.hasPermi('mes:wm:itemrecptline:add')")
|
@PreAuthorize("@ss.hasPermi('mes:wm:itemrecpt:add')")
|
||||||
@Log(title = "物料入库单行", businessType = BusinessType.INSERT)
|
@Log(title = "物料入库单行", businessType = BusinessType.INSERT)
|
||||||
@PostMapping
|
@PostMapping
|
||||||
public AjaxResult add(@RequestBody WmItemRecptLine wmItemRecptLine)
|
public AjaxResult add(@RequestBody WmItemRecptLine wmItemRecptLine)
|
||||||
@ -114,7 +114,7 @@ public class WmItemRecptLineMobController extends BaseController {
|
|||||||
* 修改物料入库单行
|
* 修改物料入库单行
|
||||||
*/
|
*/
|
||||||
@ApiOperation("修改采购入库单明细信息接口")
|
@ApiOperation("修改采购入库单明细信息接口")
|
||||||
@PreAuthorize("@ss.hasPermi('mes:wm:itemrecptline:edit')")
|
@PreAuthorize("@ss.hasPermi('mes:wm:itemrecpt:edit')")
|
||||||
@Log(title = "物料入库单行", businessType = BusinessType.UPDATE)
|
@Log(title = "物料入库单行", businessType = BusinessType.UPDATE)
|
||||||
@PutMapping
|
@PutMapping
|
||||||
public AjaxResult edit(@RequestBody WmItemRecptLine wmItemRecptLine)
|
public AjaxResult edit(@RequestBody WmItemRecptLine wmItemRecptLine)
|
||||||
@ -159,7 +159,7 @@ public class WmItemRecptLineMobController extends BaseController {
|
|||||||
* 删除物料入库单行
|
* 删除物料入库单行
|
||||||
*/
|
*/
|
||||||
@ApiOperation("删除采购入库单明细信息接口")
|
@ApiOperation("删除采购入库单明细信息接口")
|
||||||
@PreAuthorize("@ss.hasPermi('mes:wm:itemrecptline:remove')")
|
@PreAuthorize("@ss.hasPermi('mes:wm:itemrecpt:remove')")
|
||||||
@Log(title = "物料入库单行", businessType = BusinessType.DELETE)
|
@Log(title = "物料入库单行", businessType = BusinessType.DELETE)
|
||||||
@DeleteMapping("/{lineIds}")
|
@DeleteMapping("/{lineIds}")
|
||||||
public AjaxResult remove(@PathVariable Long[] lineIds)
|
public AjaxResult remove(@PathVariable Long[] lineIds)
|
||||||
|
@ -27,7 +27,6 @@ public class WmMaterialStockMobController extends BaseController {
|
|||||||
* 查询库存记录列表
|
* 查询库存记录列表
|
||||||
*/
|
*/
|
||||||
@ApiOperation("查询库存现有量")
|
@ApiOperation("查询库存现有量")
|
||||||
@PreAuthorize("@ss.hasPermi('mes:wm:wmstock:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(WmMaterialStock wmMaterialStock)
|
public TableDataInfo list(WmMaterialStock wmMaterialStock)
|
||||||
{
|
{
|
||||||
|
@ -28,7 +28,7 @@ public class WmPackageLineMobController extends BaseController {
|
|||||||
* 查询装箱明细列表
|
* 查询装箱明细列表
|
||||||
*/
|
*/
|
||||||
@ApiOperation("查询装箱单明细信息列表接口")
|
@ApiOperation("查询装箱单明细信息列表接口")
|
||||||
@PreAuthorize("@ss.hasPermi('mes:wm:packageline:list')")
|
@PreAuthorize("@ss.hasPermi('mes:wm:package:list')")
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(WmPackageLine wmPackageLine)
|
public TableDataInfo list(WmPackageLine wmPackageLine)
|
||||||
{
|
{
|
||||||
@ -42,7 +42,7 @@ public class WmPackageLineMobController extends BaseController {
|
|||||||
* 获取装箱明细详细信息
|
* 获取装箱明细详细信息
|
||||||
*/
|
*/
|
||||||
@ApiOperation("获取装箱单明细信息接口")
|
@ApiOperation("获取装箱单明细信息接口")
|
||||||
@PreAuthorize("@ss.hasPermi('mes:wm:packageline:query')")
|
@PreAuthorize("@ss.hasPermi('mes:wm:package:query')")
|
||||||
@GetMapping(value = "/{lineId}")
|
@GetMapping(value = "/{lineId}")
|
||||||
public AjaxResult getInfo(@PathVariable("lineId") Long lineId)
|
public AjaxResult getInfo(@PathVariable("lineId") Long lineId)
|
||||||
{
|
{
|
||||||
@ -53,7 +53,7 @@ public class WmPackageLineMobController extends BaseController {
|
|||||||
* 新增装箱明细
|
* 新增装箱明细
|
||||||
*/
|
*/
|
||||||
@ApiOperation("新增装箱单明细信息接口")
|
@ApiOperation("新增装箱单明细信息接口")
|
||||||
@PreAuthorize("@ss.hasPermi('mes:wm:packageline:add')")
|
@PreAuthorize("@ss.hasPermi('mes:wm:package:add')")
|
||||||
@Log(title = "装箱明细", businessType = BusinessType.INSERT)
|
@Log(title = "装箱明细", businessType = BusinessType.INSERT)
|
||||||
@PostMapping
|
@PostMapping
|
||||||
public AjaxResult add(@RequestBody WmPackageLine wmPackageLine)
|
public AjaxResult add(@RequestBody WmPackageLine wmPackageLine)
|
||||||
@ -65,7 +65,7 @@ public class WmPackageLineMobController extends BaseController {
|
|||||||
* 修改装箱明细
|
* 修改装箱明细
|
||||||
*/
|
*/
|
||||||
@ApiOperation("修改装箱单明细信息接口")
|
@ApiOperation("修改装箱单明细信息接口")
|
||||||
@PreAuthorize("@ss.hasPermi('mes:wm:packageline:edit')")
|
@PreAuthorize("@ss.hasPermi('mes:wm:package:edit')")
|
||||||
@Log(title = "装箱明细", businessType = BusinessType.UPDATE)
|
@Log(title = "装箱明细", businessType = BusinessType.UPDATE)
|
||||||
@PutMapping
|
@PutMapping
|
||||||
public AjaxResult edit(@RequestBody WmPackageLine wmPackageLine)
|
public AjaxResult edit(@RequestBody WmPackageLine wmPackageLine)
|
||||||
@ -77,7 +77,7 @@ public class WmPackageLineMobController extends BaseController {
|
|||||||
* 删除装箱明细
|
* 删除装箱明细
|
||||||
*/
|
*/
|
||||||
@ApiOperation("删除装箱单明细")
|
@ApiOperation("删除装箱单明细")
|
||||||
@PreAuthorize("@ss.hasPermi('mes:wm:packageline:remove')")
|
@PreAuthorize("@ss.hasPermi('mes:wm:package:remove')")
|
||||||
@Log(title = "装箱明细", businessType = BusinessType.DELETE)
|
@Log(title = "装箱明细", businessType = BusinessType.DELETE)
|
||||||
@DeleteMapping("/{lineIds}")
|
@DeleteMapping("/{lineIds}")
|
||||||
public AjaxResult remove(@PathVariable Long[] lineIds)
|
public AjaxResult remove(@PathVariable Long[] lineIds)
|
||||||
|
@ -43,7 +43,7 @@ public class WmProductRectpLineMobController extends BaseController {
|
|||||||
* 查询产品入库记录行列表
|
* 查询产品入库记录行列表
|
||||||
*/
|
*/
|
||||||
@ApiOperation("查询产品入库单明细清单接口")
|
@ApiOperation("查询产品入库单明细清单接口")
|
||||||
@PreAuthorize("@ss.hasPermi('mes:wm:productrecptline:list')")
|
@PreAuthorize("@ss.hasPermi('mes:wm:productrecpt:list')")
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(WmProductRecptLine wmProductRecptLine)
|
public TableDataInfo list(WmProductRecptLine wmProductRecptLine)
|
||||||
{
|
{
|
||||||
@ -57,7 +57,7 @@ public class WmProductRectpLineMobController extends BaseController {
|
|||||||
* 获取产品入库记录行详细信息
|
* 获取产品入库记录行详细信息
|
||||||
*/
|
*/
|
||||||
@ApiOperation("获取产品入库明细详情")
|
@ApiOperation("获取产品入库明细详情")
|
||||||
@PreAuthorize("@ss.hasPermi('mes:wm:productrecptline:query')")
|
@PreAuthorize("@ss.hasPermi('mes:wm:productrecpt:query')")
|
||||||
@GetMapping(value = "/{lineId}")
|
@GetMapping(value = "/{lineId}")
|
||||||
public AjaxResult getInfo(@PathVariable("lineId") Long lineId)
|
public AjaxResult getInfo(@PathVariable("lineId") Long lineId)
|
||||||
{
|
{
|
||||||
@ -68,7 +68,7 @@ public class WmProductRectpLineMobController extends BaseController {
|
|||||||
* 新增产品入库记录行
|
* 新增产品入库记录行
|
||||||
*/
|
*/
|
||||||
@ApiOperation("新增产品入库明细记录")
|
@ApiOperation("新增产品入库明细记录")
|
||||||
@PreAuthorize("@ss.hasPermi('mes:wm:productrecptline:add')")
|
@PreAuthorize("@ss.hasPermi('mes:wm:productrecpt:add')")
|
||||||
@Log(title = "产品入库记录行", businessType = BusinessType.INSERT)
|
@Log(title = "产品入库记录行", businessType = BusinessType.INSERT)
|
||||||
@PostMapping
|
@PostMapping
|
||||||
public AjaxResult add(@RequestBody WmProductRecptLine wmProductRecptLine)
|
public AjaxResult add(@RequestBody WmProductRecptLine wmProductRecptLine)
|
||||||
@ -97,7 +97,7 @@ public class WmProductRectpLineMobController extends BaseController {
|
|||||||
* 修改产品入库记录行
|
* 修改产品入库记录行
|
||||||
*/
|
*/
|
||||||
@ApiOperation("编辑产品入库明细记录")
|
@ApiOperation("编辑产品入库明细记录")
|
||||||
@PreAuthorize("@ss.hasPermi('mes:wm:productrecptline:edit')")
|
@PreAuthorize("@ss.hasPermi('mes:wm:productrecpt:edit')")
|
||||||
@Log(title = "产品入库记录行", businessType = BusinessType.UPDATE)
|
@Log(title = "产品入库记录行", businessType = BusinessType.UPDATE)
|
||||||
@PutMapping
|
@PutMapping
|
||||||
public AjaxResult edit(@RequestBody WmProductRecptLine wmProductRecptLine)
|
public AjaxResult edit(@RequestBody WmProductRecptLine wmProductRecptLine)
|
||||||
@ -124,7 +124,7 @@ public class WmProductRectpLineMobController extends BaseController {
|
|||||||
* 删除产品入库记录行
|
* 删除产品入库记录行
|
||||||
*/
|
*/
|
||||||
@ApiOperation("删除产品入库明细记录")
|
@ApiOperation("删除产品入库明细记录")
|
||||||
@PreAuthorize("@ss.hasPermi('mes:wm:productrecptline:remove')")
|
@PreAuthorize("@ss.hasPermi('mes:wm:productrecpt:remove')")
|
||||||
@Log(title = "产品入库记录行", businessType = BusinessType.DELETE)
|
@Log(title = "产品入库记录行", businessType = BusinessType.DELETE)
|
||||||
@DeleteMapping("/{lineIds}")
|
@DeleteMapping("/{lineIds}")
|
||||||
public AjaxResult remove(@PathVariable Long[] lineIds)
|
public AjaxResult remove(@PathVariable Long[] lineIds)
|
||||||
|
@ -33,7 +33,7 @@ public class WmProductSalseLineMobController extends BaseController {
|
|||||||
* 查询产品销售出库行列表
|
* 查询产品销售出库行列表
|
||||||
*/
|
*/
|
||||||
@ApiOperation("查询销售出库行列表接口")
|
@ApiOperation("查询销售出库行列表接口")
|
||||||
@PreAuthorize("@ss.hasPermi('mes:wm:productsalseline:list')")
|
@PreAuthorize("@ss.hasPermi('mes:wm:productsalse:list')")
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(WmProductSalseLine wmProductSalseLine)
|
public TableDataInfo list(WmProductSalseLine wmProductSalseLine)
|
||||||
{
|
{
|
||||||
@ -47,7 +47,7 @@ public class WmProductSalseLineMobController extends BaseController {
|
|||||||
* 获取产品销售出库行详细信息
|
* 获取产品销售出库行详细信息
|
||||||
*/
|
*/
|
||||||
@ApiOperation("获取销售出库行信息明细接口")
|
@ApiOperation("获取销售出库行信息明细接口")
|
||||||
@PreAuthorize("@ss.hasPermi('mes:wm:productsalseline:query')")
|
@PreAuthorize("@ss.hasPermi('mes:wm:productsalse:query')")
|
||||||
@GetMapping(value = "/{lineId}")
|
@GetMapping(value = "/{lineId}")
|
||||||
public AjaxResult getInfo(@PathVariable("lineId") Long lineId)
|
public AjaxResult getInfo(@PathVariable("lineId") Long lineId)
|
||||||
{
|
{
|
||||||
@ -58,7 +58,7 @@ public class WmProductSalseLineMobController extends BaseController {
|
|||||||
* 新增产品销售出库行
|
* 新增产品销售出库行
|
||||||
*/
|
*/
|
||||||
@ApiOperation("新增销售出库信息明细信息接口")
|
@ApiOperation("新增销售出库信息明细信息接口")
|
||||||
@PreAuthorize("@ss.hasPermi('mes:wm:productsalseline:add')")
|
@PreAuthorize("@ss.hasPermi('mes:wm:productsalse:add')")
|
||||||
@Log(title = "产品销售出库行", businessType = BusinessType.INSERT)
|
@Log(title = "产品销售出库行", businessType = BusinessType.INSERT)
|
||||||
@PostMapping
|
@PostMapping
|
||||||
public AjaxResult add(@RequestBody WmProductSalseLine wmProductSalseLine)
|
public AjaxResult add(@RequestBody WmProductSalseLine wmProductSalseLine)
|
||||||
@ -91,7 +91,7 @@ public class WmProductSalseLineMobController extends BaseController {
|
|||||||
* 修改产品销售出库行
|
* 修改产品销售出库行
|
||||||
*/
|
*/
|
||||||
@ApiOperation("编辑销售出库明细信息接口")
|
@ApiOperation("编辑销售出库明细信息接口")
|
||||||
@PreAuthorize("@ss.hasPermi('mes:wm:productsalseline:edit')")
|
@PreAuthorize("@ss.hasPermi('mes:wm:productsalse:edit')")
|
||||||
@Log(title = "产品销售出库行", businessType = BusinessType.UPDATE)
|
@Log(title = "产品销售出库行", businessType = BusinessType.UPDATE)
|
||||||
@PutMapping
|
@PutMapping
|
||||||
public AjaxResult edit(@RequestBody WmProductSalseLine wmProductSalseLine)
|
public AjaxResult edit(@RequestBody WmProductSalseLine wmProductSalseLine)
|
||||||
@ -122,7 +122,7 @@ public class WmProductSalseLineMobController extends BaseController {
|
|||||||
* 删除产品销售出库行
|
* 删除产品销售出库行
|
||||||
*/
|
*/
|
||||||
@ApiOperation("删除销售出库明细信息接口")
|
@ApiOperation("删除销售出库明细信息接口")
|
||||||
@PreAuthorize("@ss.hasPermi('mes:wm:productsalseline:remove')")
|
@PreAuthorize("@ss.hasPermi('mes:wm:productsalse:remove')")
|
||||||
@Log(title = "产品销售出库行", businessType = BusinessType.DELETE)
|
@Log(title = "产品销售出库行", businessType = BusinessType.DELETE)
|
||||||
@DeleteMapping("/{lineIds}")
|
@DeleteMapping("/{lineIds}")
|
||||||
public AjaxResult remove(@PathVariable Long[] lineIds)
|
public AjaxResult remove(@PathVariable Long[] lineIds)
|
||||||
|
@ -25,7 +25,7 @@ public class WmRtVendorLineMobController extends BaseController {
|
|||||||
/**
|
/**
|
||||||
* 查询供应商退货行列表
|
* 查询供应商退货行列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:wm:rtvendorline:list')")
|
@PreAuthorize("@ss.hasPermi('mes:wm:rtvendor:list')")
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(WmRtVendorLine wmRtVendorLine)
|
public TableDataInfo list(WmRtVendorLine wmRtVendorLine)
|
||||||
{
|
{
|
||||||
@ -37,7 +37,7 @@ public class WmRtVendorLineMobController extends BaseController {
|
|||||||
/**
|
/**
|
||||||
* 获取供应商退货行详细信息
|
* 获取供应商退货行详细信息
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:wm:rtvendorline:query')")
|
@PreAuthorize("@ss.hasPermi('mes:wm:rtvendor:query')")
|
||||||
@GetMapping(value = "/{lineId}")
|
@GetMapping(value = "/{lineId}")
|
||||||
public AjaxResult getInfo(@PathVariable("lineId") Long lineId)
|
public AjaxResult getInfo(@PathVariable("lineId") Long lineId)
|
||||||
{
|
{
|
||||||
@ -47,7 +47,7 @@ public class WmRtVendorLineMobController extends BaseController {
|
|||||||
/**
|
/**
|
||||||
* 新增供应商退货行
|
* 新增供应商退货行
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:wm:rtvendorline:add')")
|
@PreAuthorize("@ss.hasPermi('mes:wm:rtvendor:add')")
|
||||||
@Log(title = "供应商退货行", businessType = BusinessType.INSERT)
|
@Log(title = "供应商退货行", businessType = BusinessType.INSERT)
|
||||||
@PostMapping
|
@PostMapping
|
||||||
public AjaxResult add(@RequestBody WmRtVendorLine wmRtVendorLine)
|
public AjaxResult add(@RequestBody WmRtVendorLine wmRtVendorLine)
|
||||||
@ -59,7 +59,7 @@ public class WmRtVendorLineMobController extends BaseController {
|
|||||||
/**
|
/**
|
||||||
* 修改供应商退货行
|
* 修改供应商退货行
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:wm:rtvendorline:edit')")
|
@PreAuthorize("@ss.hasPermi('mes:wm:rtvendor:edit')")
|
||||||
@Log(title = "供应商退货行", businessType = BusinessType.UPDATE)
|
@Log(title = "供应商退货行", businessType = BusinessType.UPDATE)
|
||||||
@PutMapping
|
@PutMapping
|
||||||
public AjaxResult edit(@RequestBody WmRtVendorLine wmRtVendorLine)
|
public AjaxResult edit(@RequestBody WmRtVendorLine wmRtVendorLine)
|
||||||
@ -70,7 +70,7 @@ public class WmRtVendorLineMobController extends BaseController {
|
|||||||
/**
|
/**
|
||||||
* 删除供应商退货行
|
* 删除供应商退货行
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:wm:rtvendorline:remove')")
|
@PreAuthorize("@ss.hasPermi('mes:wm:rtvendor:remove')")
|
||||||
@Log(title = "供应商退货行", businessType = BusinessType.DELETE)
|
@Log(title = "供应商退货行", businessType = BusinessType.DELETE)
|
||||||
@DeleteMapping("/{lineIds}")
|
@DeleteMapping("/{lineIds}")
|
||||||
public AjaxResult remove(@PathVariable Long[] lineIds)
|
public AjaxResult remove(@PathVariable Long[] lineIds)
|
||||||
|
@ -34,7 +34,6 @@ public class WmSnMobController extends BaseController {
|
|||||||
/**
|
/**
|
||||||
* 查询SN码列表
|
* 查询SN码列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:wm:sn:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(WmSn wmSn)
|
public TableDataInfo list(WmSn wmSn)
|
||||||
{
|
{
|
||||||
@ -46,7 +45,6 @@ public class WmSnMobController extends BaseController {
|
|||||||
/**
|
/**
|
||||||
* 查询SN码列表
|
* 查询SN码列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('mes:wm:sn:list')")
|
|
||||||
@GetMapping("/listSn")
|
@GetMapping("/listSn")
|
||||||
public TableDataInfo listSn(WmSn wmSn)
|
public TableDataInfo listSn(WmSn wmSn)
|
||||||
{
|
{
|
||||||
|
@ -42,7 +42,7 @@ public class WmStockTakingLineMobController extends BaseController
|
|||||||
* 查询库存盘点明细列表
|
* 查询库存盘点明细列表
|
||||||
*/
|
*/
|
||||||
@ApiOperation("查询库存盘点明细列表接口")
|
@ApiOperation("查询库存盘点明细列表接口")
|
||||||
@PreAuthorize("@ss.hasPermi('wm:stocktakingline:list')")
|
@PreAuthorize("@ss.hasPermi('mes:wm:stocktaking:list')")
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(WmStockTakingLine wmStockTakingLine)
|
public TableDataInfo list(WmStockTakingLine wmStockTakingLine)
|
||||||
{
|
{
|
||||||
@ -56,7 +56,7 @@ public class WmStockTakingLineMobController extends BaseController
|
|||||||
* 获取库存盘点明细详细信息
|
* 获取库存盘点明细详细信息
|
||||||
*/
|
*/
|
||||||
@ApiOperation("查询库存盘点明细信息接口")
|
@ApiOperation("查询库存盘点明细信息接口")
|
||||||
@PreAuthorize("@ss.hasPermi('wm:stocktakingline:query')")
|
@PreAuthorize("@ss.hasPermi('mes:wm:stocktaking:query')")
|
||||||
@GetMapping(value = "/{lineId}")
|
@GetMapping(value = "/{lineId}")
|
||||||
public AjaxResult getInfo(@PathVariable("lineId") Long lineId)
|
public AjaxResult getInfo(@PathVariable("lineId") Long lineId)
|
||||||
{
|
{
|
||||||
@ -67,7 +67,7 @@ public class WmStockTakingLineMobController extends BaseController
|
|||||||
* 新增库存盘点明细
|
* 新增库存盘点明细
|
||||||
*/
|
*/
|
||||||
@ApiOperation("新增库存盘点明细接口")
|
@ApiOperation("新增库存盘点明细接口")
|
||||||
@PreAuthorize("@ss.hasPermi('wm:stocktakingline:add')")
|
@PreAuthorize("@ss.hasPermi('mes:wm:stocktaking:add')")
|
||||||
@Log(title = "库存盘点明细", businessType = BusinessType.INSERT)
|
@Log(title = "库存盘点明细", businessType = BusinessType.INSERT)
|
||||||
@PostMapping
|
@PostMapping
|
||||||
public AjaxResult add(@RequestBody WmStockTakingLine wmStockTakingLine)
|
public AjaxResult add(@RequestBody WmStockTakingLine wmStockTakingLine)
|
||||||
@ -79,7 +79,7 @@ public class WmStockTakingLineMobController extends BaseController
|
|||||||
* 修改库存盘点明细
|
* 修改库存盘点明细
|
||||||
*/
|
*/
|
||||||
@ApiOperation("编辑库存盘点明细接口")
|
@ApiOperation("编辑库存盘点明细接口")
|
||||||
@PreAuthorize("@ss.hasPermi('wm:stocktakingline:edit')")
|
@PreAuthorize("@ss.hasPermi('mes:wm:stocktakingline:edit')")
|
||||||
@Log(title = "库存盘点明细", businessType = BusinessType.UPDATE)
|
@Log(title = "库存盘点明细", businessType = BusinessType.UPDATE)
|
||||||
@PutMapping
|
@PutMapping
|
||||||
public AjaxResult edit(@RequestBody WmStockTakingLine wmStockTakingLine)
|
public AjaxResult edit(@RequestBody WmStockTakingLine wmStockTakingLine)
|
||||||
@ -91,7 +91,7 @@ public class WmStockTakingLineMobController extends BaseController
|
|||||||
* 删除库存盘点明细
|
* 删除库存盘点明细
|
||||||
*/
|
*/
|
||||||
@ApiOperation("删除库存盘点明细接口")
|
@ApiOperation("删除库存盘点明细接口")
|
||||||
@PreAuthorize("@ss.hasPermi('wm:stocktakingline:remove')")
|
@PreAuthorize("@ss.hasPermi('mes:wm:stocktakingline:remove')")
|
||||||
@Log(title = "库存盘点明细", businessType = BusinessType.DELETE)
|
@Log(title = "库存盘点明细", businessType = BusinessType.DELETE)
|
||||||
@DeleteMapping("/{lineIds}")
|
@DeleteMapping("/{lineIds}")
|
||||||
public AjaxResult remove(@PathVariable Long[] lineIds)
|
public AjaxResult remove(@PathVariable Long[] lineIds)
|
||||||
|
@ -29,7 +29,7 @@ public class WmStockTakingResultMobController extends BaseController {
|
|||||||
* 查询库存盘点结果列表
|
* 查询库存盘点结果列表
|
||||||
*/
|
*/
|
||||||
@ApiOperation("查询库存盘点结果列表接口")
|
@ApiOperation("查询库存盘点结果列表接口")
|
||||||
@PreAuthorize("@ss.hasPermi('wm:stocktakingresult:list')")
|
@PreAuthorize("@ss.hasPermi('mes:wm:stocktaking:list')")
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(WmStockTakingResult wmStockTakingResult)
|
public TableDataInfo list(WmStockTakingResult wmStockTakingResult)
|
||||||
{
|
{
|
||||||
@ -43,7 +43,7 @@ public class WmStockTakingResultMobController extends BaseController {
|
|||||||
* 获取库存盘点结果详细信息
|
* 获取库存盘点结果详细信息
|
||||||
*/
|
*/
|
||||||
@ApiOperation("查询库存盘点结果详情接口")
|
@ApiOperation("查询库存盘点结果详情接口")
|
||||||
@PreAuthorize("@ss.hasPermi('wm:stocktakingresult:query')")
|
@PreAuthorize("@ss.hasPermi('mes:wm:stocktaking:query')")
|
||||||
@GetMapping(value = "/{resultId}")
|
@GetMapping(value = "/{resultId}")
|
||||||
public AjaxResult getInfo(@PathVariable("resultId") Long resultId)
|
public AjaxResult getInfo(@PathVariable("resultId") Long resultId)
|
||||||
{
|
{
|
||||||
@ -54,7 +54,7 @@ public class WmStockTakingResultMobController extends BaseController {
|
|||||||
* 新增库存盘点结果
|
* 新增库存盘点结果
|
||||||
*/
|
*/
|
||||||
@ApiOperation("新增库存盘点结果接口")
|
@ApiOperation("新增库存盘点结果接口")
|
||||||
@PreAuthorize("@ss.hasPermi('wm:stocktakingresult:add')")
|
@PreAuthorize("@ss.hasPermi('mes:wm:stocktaking:add')")
|
||||||
@Log(title = "库存盘点结果", businessType = BusinessType.INSERT)
|
@Log(title = "库存盘点结果", businessType = BusinessType.INSERT)
|
||||||
@PostMapping
|
@PostMapping
|
||||||
public AjaxResult add(@RequestBody WmStockTakingResult wmStockTakingResult)
|
public AjaxResult add(@RequestBody WmStockTakingResult wmStockTakingResult)
|
||||||
@ -66,7 +66,7 @@ public class WmStockTakingResultMobController extends BaseController {
|
|||||||
* 修改库存盘点结果
|
* 修改库存盘点结果
|
||||||
*/
|
*/
|
||||||
@ApiOperation("修改库存盘点结果接口")
|
@ApiOperation("修改库存盘点结果接口")
|
||||||
@PreAuthorize("@ss.hasPermi('wm:stocktakingresult:edit')")
|
@PreAuthorize("@ss.hasPermi('mes:wm:stocktaking:edit')")
|
||||||
@Log(title = "库存盘点结果", businessType = BusinessType.UPDATE)
|
@Log(title = "库存盘点结果", businessType = BusinessType.UPDATE)
|
||||||
@PutMapping
|
@PutMapping
|
||||||
public AjaxResult edit(@RequestBody WmStockTakingResult wmStockTakingResult)
|
public AjaxResult edit(@RequestBody WmStockTakingResult wmStockTakingResult)
|
||||||
@ -78,7 +78,7 @@ public class WmStockTakingResultMobController extends BaseController {
|
|||||||
* 删除库存盘点结果
|
* 删除库存盘点结果
|
||||||
*/
|
*/
|
||||||
@ApiOperation("删除库存盘点结果接口")
|
@ApiOperation("删除库存盘点结果接口")
|
||||||
@PreAuthorize("@ss.hasPermi('wm:stocktakingresult:remove')")
|
@PreAuthorize("@ss.hasPermi('mes:wm:stocktaking:remove')")
|
||||||
@Log(title = "库存盘点结果", businessType = BusinessType.DELETE)
|
@Log(title = "库存盘点结果", businessType = BusinessType.DELETE)
|
||||||
@DeleteMapping("/{resultIds}")
|
@DeleteMapping("/{resultIds}")
|
||||||
public AjaxResult remove(@PathVariable Long[] resultIds)
|
public AjaxResult remove(@PathVariable Long[] resultIds)
|
||||||
|
@ -41,7 +41,7 @@ public class WmTransferLineMobController extends BaseController {
|
|||||||
* 查询转移单行列表
|
* 查询转移单行列表
|
||||||
*/
|
*/
|
||||||
@ApiOperation("查询转移调拨单明细清单接口")
|
@ApiOperation("查询转移调拨单明细清单接口")
|
||||||
@PreAuthorize("@ss.hasPermi('mes:wm:transferline:list')")
|
@PreAuthorize("@ss.hasPermi('mes:wm:transfer:list')")
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(WmTransferLine wmTransferLine)
|
public TableDataInfo list(WmTransferLine wmTransferLine)
|
||||||
{
|
{
|
||||||
@ -55,7 +55,7 @@ public class WmTransferLineMobController extends BaseController {
|
|||||||
* 获取转移单行详细信息
|
* 获取转移单行详细信息
|
||||||
*/
|
*/
|
||||||
@ApiOperation("获取转移调拨单明细详情接口")
|
@ApiOperation("获取转移调拨单明细详情接口")
|
||||||
@PreAuthorize("@ss.hasPermi('mes:wm:transferline:query')")
|
@PreAuthorize("@ss.hasPermi('mes:wm:transfer:query')")
|
||||||
@GetMapping(value = "/{lineId}")
|
@GetMapping(value = "/{lineId}")
|
||||||
public AjaxResult getInfo(@PathVariable("lineId") Long lineId)
|
public AjaxResult getInfo(@PathVariable("lineId") Long lineId)
|
||||||
{
|
{
|
||||||
@ -66,7 +66,7 @@ public class WmTransferLineMobController extends BaseController {
|
|||||||
* 新增转移单行
|
* 新增转移单行
|
||||||
*/
|
*/
|
||||||
@ApiOperation("新增转移调拨单明细信息接口")
|
@ApiOperation("新增转移调拨单明细信息接口")
|
||||||
@PreAuthorize("@ss.hasPermi('mes:wm:transferline:add')")
|
@PreAuthorize("@ss.hasPermi('mes:wm:transfer:add')")
|
||||||
@Log(title = "转移单行", businessType = BusinessType.INSERT)
|
@Log(title = "转移单行", businessType = BusinessType.INSERT)
|
||||||
@PostMapping
|
@PostMapping
|
||||||
public AjaxResult add(@RequestBody WmTransferLine wmTransferLine)
|
public AjaxResult add(@RequestBody WmTransferLine wmTransferLine)
|
||||||
@ -126,7 +126,7 @@ public class WmTransferLineMobController extends BaseController {
|
|||||||
* 修改转移单行
|
* 修改转移单行
|
||||||
*/
|
*/
|
||||||
@ApiOperation("编辑转移调拨单明细信息接口")
|
@ApiOperation("编辑转移调拨单明细信息接口")
|
||||||
@PreAuthorize("@ss.hasPermi('mes:wm:transferline:edit')")
|
@PreAuthorize("@ss.hasPermi('mes:wm:transfer:edit')")
|
||||||
@Log(title = "转移单行", businessType = BusinessType.UPDATE)
|
@Log(title = "转移单行", businessType = BusinessType.UPDATE)
|
||||||
@PutMapping
|
@PutMapping
|
||||||
public AjaxResult edit(@RequestBody WmTransferLine wmTransferLine)
|
public AjaxResult edit(@RequestBody WmTransferLine wmTransferLine)
|
||||||
@ -184,7 +184,7 @@ public class WmTransferLineMobController extends BaseController {
|
|||||||
* 删除转移单行
|
* 删除转移单行
|
||||||
*/
|
*/
|
||||||
@ApiOperation("删除转移调拨单明细信息接口")
|
@ApiOperation("删除转移调拨单明细信息接口")
|
||||||
@PreAuthorize("@ss.hasPermi('mes:wm:transferline:remove')")
|
@PreAuthorize("@ss.hasPermi('mes:wm:transfer:remove')")
|
||||||
@Log(title = "转移单行", businessType = BusinessType.DELETE)
|
@Log(title = "转移单行", businessType = BusinessType.DELETE)
|
||||||
@DeleteMapping("/{lineIds}")
|
@DeleteMapping("/{lineIds}")
|
||||||
public AjaxResult remove(@PathVariable Long[] lineIds)
|
public AjaxResult remove(@PathVariable Long[] lineIds)
|
||||||
|
@ -36,7 +36,6 @@ public class WmWarehouseMobController extends BaseController {
|
|||||||
* 查询库存盘点记录列表
|
* 查询库存盘点记录列表
|
||||||
*/
|
*/
|
||||||
@ApiOperation("查询仓库列表接口")
|
@ApiOperation("查询仓库列表接口")
|
||||||
@PreAuthorize("@ss.hasPermi('wm:stocktaking:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(WmWarehouse warehouse)
|
public TableDataInfo list(WmWarehouse warehouse)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user