开发基础数据
parent
69cd4c88be
commit
21bc3a412b
@ -0,0 +1,58 @@
|
||||
package cn.estsh.i3plus.pojo.wms.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import io.swagger.models.auth.In;
|
||||
import lombok.Data;
|
||||
import org.hibernate.annotations.DynamicInsert;
|
||||
import org.hibernate.annotations.DynamicUpdate;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Table;
|
||||
|
||||
/**
|
||||
* @Description : 抽点比例表
|
||||
* @Reference :
|
||||
* @Author : jimmy.zeng
|
||||
* @CreateDate : 2018-11-07 10:55
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@Table(name="WMS_IB_CHECK_PLAN")
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@Api(value="抽点比例表",description = "抽点比例表")
|
||||
public class WmsIbCheckPlan extends BaseBean{
|
||||
|
||||
@Column(name="PART_NO")
|
||||
@ApiParam(value ="物料编码")
|
||||
private String partNo;
|
||||
|
||||
@Column(name="PART_NAME")
|
||||
@ApiParam(value ="物料名称")
|
||||
private String partName;
|
||||
|
||||
@Column(name="START_DATE")
|
||||
@ApiParam(value ="开始日期")
|
||||
private String startDate;
|
||||
|
||||
@Column(name="END_DATE")
|
||||
@ApiParam(value ="结束日期")
|
||||
private String endDate;
|
||||
|
||||
@Column(name="LOT_QTY")
|
||||
@ApiParam(value ="样本数量", example = "-1")
|
||||
private Integer lotQty;
|
||||
|
||||
@Column(name="COUNTER")
|
||||
@ApiParam(value ="已收货件数", example = "-1")
|
||||
private Integer counter;
|
||||
|
||||
@Column(name="CHECK_COUNTER")
|
||||
@ApiParam(value ="已抽点件数", example = "-1")
|
||||
private Integer checkCounter;
|
||||
|
||||
}
|
@ -0,0 +1,81 @@
|
||||
package cn.estsh.i3plus.pojo.wms.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
import org.hibernate.annotations.DynamicInsert;
|
||||
import org.hibernate.annotations.DynamicUpdate;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Table;
|
||||
|
||||
/**
|
||||
* @Description : 库位表
|
||||
* @Reference :
|
||||
* @Author : jimmy.zeng
|
||||
* @CreateDate : 2018-11-07 10:35
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@Table(name="WMS_LOCATE")
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@Api(value="库位表",description = "库位表")
|
||||
public class WmsLocate extends BaseBean {
|
||||
|
||||
@Column(name="LOCATE_NO")
|
||||
@ApiParam(value ="库位代码")
|
||||
private String locateNo;
|
||||
|
||||
@Column(name="LOCATE_NAME")
|
||||
@ApiParam(value ="库位名称")
|
||||
private String locateName;
|
||||
|
||||
@Column(name="LOCATE_TYPE")
|
||||
@ApiParam(value ="库位类型")
|
||||
private String locateType;
|
||||
|
||||
@Column(name="WH_NO")
|
||||
@ApiParam(value ="仓库代码")
|
||||
private String whNo;
|
||||
|
||||
@Column(name="ZONE_NO")
|
||||
@ApiParam(value ="存储区代码")
|
||||
private String zoneNo;
|
||||
|
||||
@Column(name="X")
|
||||
@ApiParam(value ="X", example = "-1")
|
||||
private Integer x;
|
||||
|
||||
@Column(name="Y")
|
||||
@ApiParam(value ="Y", example = "-1")
|
||||
private Integer y;
|
||||
|
||||
@Column(name="Z")
|
||||
@ApiParam(value ="Z", example = "-1")
|
||||
private Integer z;
|
||||
|
||||
@Column(name="SEQ")
|
||||
@ApiParam(value ="序号", example = "-1")
|
||||
private Integer seq;
|
||||
|
||||
@Column(name="IS_EMPTY")
|
||||
@ApiParam(value ="是否空库位", example = "-1")
|
||||
private Integer isEmpty;
|
||||
|
||||
@Column(name="MAX_PACKAGE_QTY")
|
||||
@ApiParam(value ="最大包装数量", example = "-1")
|
||||
private Integer maxPackageQty;
|
||||
|
||||
@Column(name="MAX_PART_QTY")
|
||||
@ApiParam(value ="最大零件数量", example = "-1")
|
||||
private Integer maxPartQty;
|
||||
|
||||
@Column(name="STOCK_UNIT")
|
||||
@ApiParam(value ="存放单位", example = "-1")
|
||||
private String stockUnit;
|
||||
|
||||
}
|
@ -0,0 +1,40 @@
|
||||
package cn.estsh.i3plus.pojo.wms.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
import org.hibernate.annotations.DynamicInsert;
|
||||
import org.hibernate.annotations.DynamicUpdate;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Table;
|
||||
|
||||
/**
|
||||
* @Description : 库位物料表
|
||||
* @Reference :
|
||||
* @Author : jimmy.zeng
|
||||
* @CreateDate : 2018-11-07 10:51
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@Table(name="WMS_LOCATE_PART")
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@Api(value="库位物料表",description = "库位物料表")
|
||||
public class WmsLocatePart extends BaseBean{
|
||||
|
||||
@Column(name="LOCATE_NO")
|
||||
@ApiParam(value ="库位代码")
|
||||
private String locateNo;
|
||||
|
||||
@Column(name="PART_NO")
|
||||
@ApiParam(value ="物料编码")
|
||||
private String partNo;
|
||||
|
||||
@Column(name="PART_NAME")
|
||||
@ApiParam(value ="物料名称")
|
||||
private String partName;
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package cn.estsh.i3plus.pojo.wms.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.wms.bean.WmsIbCheckPlan;
|
||||
|
||||
/**
|
||||
* @Description : 抽点比例表
|
||||
* @Reference :
|
||||
* @Author : jimmy.zeng
|
||||
* @CreateDate : 2018-11-07 11:17
|
||||
* @Modify:
|
||||
**/
|
||||
public interface WmsIbCheckPlanRepository extends BaseRepository<WmsIbCheckPlan, Long> {
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package cn.estsh.i3plus.pojo.wms.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.wms.bean.WmsLocatePart;
|
||||
|
||||
/**
|
||||
* @Description : 库位物料表
|
||||
* @Reference :
|
||||
* @Author : jimmy.zeng
|
||||
* @CreateDate : 2018-11-07 11:16
|
||||
* @Modify:
|
||||
**/
|
||||
public interface WmsLocatePartRepository extends BaseRepository<WmsLocatePart, Long> {
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package cn.estsh.i3plus.pojo.wms.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.wms.bean.WmsLocate;
|
||||
|
||||
/**
|
||||
* @Description : 库位表
|
||||
* @Reference :
|
||||
* @Author : jimmy.zeng
|
||||
* @CreateDate : 2018-11-07 11:14
|
||||
* @Modify:
|
||||
**/
|
||||
public interface WmsLocateRepository extends BaseRepository<WmsLocate, Long> {
|
||||
}
|
Loading…
Reference in New Issue