7 changed files with 105 additions and 38 deletions
-
33src/main/java/com/gaotao/modules/api/apiData/CheckInventoryExistsRequest.java
-
5src/main/java/com/gaotao/modules/automatedWarehouse/entity/AgvStationData.java
-
13src/main/java/com/gaotao/modules/automatedWarehouse/mapper/AgvStationMapper.java
-
37src/main/java/com/gaotao/modules/automatedWarehouse/service/impl/AgvStationServiceImpl.java
-
6src/main/java/com/gaotao/modules/automatedWarehouse/task/WcsTaskScheduler.java
-
44src/main/resources/mapper/automatedWarehouse/AgvStationMapper.xml
-
5src/main/resources/mapper/automatedWarehouse/NotifyDetailQueryMapper.xml
@ -0,0 +1,33 @@ |
|||||
|
package com.gaotao.modules.api.apiData; |
||||
|
|
||||
|
public class CheckInventoryExistsRequest { |
||||
|
/** |
||||
|
* 底托类型(1:平托 2:围框托盘 3:钢底托) |
||||
|
*/ |
||||
|
|
||||
|
private Integer basePalletType; |
||||
|
|
||||
|
/** |
||||
|
* 托盘类型(1:托盘 2:四宫格 3:九宫格) |
||||
|
*/ |
||||
|
|
||||
|
private Integer palletType; |
||||
|
|
||||
|
// Getter and Setter |
||||
|
|
||||
|
public Integer getBasePalletType() { |
||||
|
return basePalletType; |
||||
|
} |
||||
|
|
||||
|
public void setBasePalletType(Integer basePalletType) { |
||||
|
this.basePalletType = basePalletType; |
||||
|
} |
||||
|
|
||||
|
public Integer getPalletType() { |
||||
|
return palletType; |
||||
|
} |
||||
|
|
||||
|
public void setPalletType(Integer palletType) { |
||||
|
this.palletType = palletType; |
||||
|
} |
||||
|
} |
||||
Write
Preview
Loading…
Cancel
Save
Reference in new issue