Merge remote-tracking branch 'origin/master'
commit
5335cf3b44
@ -0,0 +1,52 @@
|
||||
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 : alwaysfrin
|
||||
* @CreateDate : 2018-09-04 15:58
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@Table(name="T_WMS_CUSTOMER_SENDTO")
|
||||
@Api("客户发往地信息")
|
||||
public class CustomerSendTo extends BaseBean {
|
||||
|
||||
@Column(name="CUSTOMER_ID")
|
||||
@ApiParam("客户端编号")
|
||||
public String customerId;
|
||||
|
||||
@Column(name="PART_ID")
|
||||
@ApiParam("零件编号")
|
||||
public String partId;
|
||||
|
||||
@Column(name="CUSTOMER_PARTNO")
|
||||
@ApiParam("客户零件号")
|
||||
public String customerPartNo;
|
||||
|
||||
@Column(name="ERP_PARTNO")
|
||||
@ApiParam("ERP零件号")
|
||||
public String ERPPartNo;
|
||||
|
||||
@Column(name="CUSTOMER_SENDTO_CODE")
|
||||
@ApiParam("客户发往地代码")
|
||||
public String customerSendToCode;
|
||||
|
||||
@Column(name="CUSTOMER_SENDTO_NAME")
|
||||
@ApiParam("客户发往地名称")
|
||||
public String customerSendToName;
|
||||
}
|
@ -0,0 +1,36 @@
|
||||
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 : silliter.yuan
|
||||
* @CreateDate : 2018-10-31 15:18
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@Table(name="T_WMS_ORG_WAREHOUSE")
|
||||
@Api("工厂仓库组织关系表")
|
||||
public class RefOrgWareHouse extends BaseBean {
|
||||
|
||||
@Column(name="ORG_ID")
|
||||
@ApiParam("组织编号")
|
||||
public String orgId;
|
||||
|
||||
@Column(name="WAREHOUSE_ID")
|
||||
@ApiParam("仓库编号")
|
||||
public String storeId;
|
||||
}
|
@ -0,0 +1,36 @@
|
||||
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 : silliter.yuan
|
||||
* @CreateDate : 2018-10-31 15:18
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@Table(name="T_WMS_USER_WAREHOUSE")
|
||||
@Api("用户仓库关系表")
|
||||
public class RefUserWareHouse extends BaseBean {
|
||||
|
||||
@Column(name="USER_ID")
|
||||
@ApiParam("用户编号")
|
||||
public String userId;
|
||||
|
||||
@Column(name="WAREHOUSE_ID")
|
||||
@ApiParam("仓库编号")
|
||||
public String storeId;
|
||||
}
|
@ -0,0 +1,52 @@
|
||||
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 : alwaysfrin
|
||||
* @CreateDate : 2018-09-04 15:58
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@Table(name="T_WMS_WAREHOUSE")
|
||||
@Api("工厂仓库信息")
|
||||
public class WareHouse extends BaseBean {
|
||||
|
||||
@Column(name="code")
|
||||
@ApiParam("仓库代码")
|
||||
public String code;
|
||||
|
||||
@Column(name="name")
|
||||
@ApiParam("仓库名称")
|
||||
public String name;
|
||||
|
||||
@Column(name="address")
|
||||
@ApiParam("仓库地址")
|
||||
public String address;
|
||||
|
||||
@Column(name="telephone")
|
||||
@ApiParam("仓库电话号码")
|
||||
public String telephone;
|
||||
|
||||
@Column(name="fax")
|
||||
@ApiParam("仓库传真号码")
|
||||
public String fax;
|
||||
|
||||
@Column(name="contact")
|
||||
@ApiParam("联系人")
|
||||
public String contact;
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package cn.estsh.i3plus.pojo.wms.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.wms.bean.WareHouse;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description : 对象持久层仓用方法控制
|
||||
* @Reference :
|
||||
* @Author : alwaysfrin
|
||||
* @CreateDate : 2018-09-13 9:47
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface WareHouseRepository extends BaseRepository<WareHouse, Long> {
|
||||
}
|
Loading…
Reference in New Issue