Merge remote-tracking branch 'origin/test' into test
commit
3df3c89db9
@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<parent>
|
||||
<artifactId>i3plus-pojo</artifactId>
|
||||
<groupId>i3plus.pojo</groupId>
|
||||
<version>1.0-DEV-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<artifactId>i3plus-pojo-base-mongo</artifactId>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-data-mongodb</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>i3plus.pojo</groupId>
|
||||
<artifactId>i3plus-pojo-base</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>i3plus.pojo</groupId>
|
||||
<artifactId>i3plus-pojo-platform</artifactId>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
</project>
|
@ -0,0 +1,45 @@
|
||||
package cn.estsh.i3plus.pojo.wms.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.annotation.AnnoOutputColumn;
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Description : LPS库存
|
||||
* @Reference :
|
||||
* @author: jessica.chen
|
||||
* @date: 2019/12/10 17:10
|
||||
* @Modify:
|
||||
*/
|
||||
|
||||
@Data
|
||||
@Api(value="LPS库存模板",description = "LPS库存模板")
|
||||
public class LpsStockQuanModel extends BaseBean {
|
||||
|
||||
private static final long serialVersionUID = 2167743108452607913L;
|
||||
|
||||
//源存储区
|
||||
@ApiParam(value = "FromLocation")
|
||||
@AnnoOutputColumn
|
||||
private String srcZoneNo;
|
||||
|
||||
//目标库位
|
||||
@ApiParam(value = "ToBIn")
|
||||
@AnnoOutputColumn
|
||||
private String locateNo;
|
||||
|
||||
//零件号
|
||||
@ApiParam(value = "Item")
|
||||
@AnnoOutputColumn
|
||||
private String partNo;
|
||||
|
||||
@ApiParam(value = "Qty")
|
||||
@AnnoOutputColumn
|
||||
private String qty;
|
||||
|
||||
@ApiParam(value = "下标值")
|
||||
@AnnoOutputColumn(required = false)
|
||||
private Integer index;
|
||||
}
|
Loading…
Reference in New Issue