wms工厂仓库类书写
parent
1dba722a42
commit
ea3518db8a
@ -0,0 +1,35 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.platform.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="factory_store")
|
||||||
|
@Api("工厂仓库")
|
||||||
|
public class FactoryStore extends BaseBean {
|
||||||
|
|
||||||
|
@Column(name="store_code")
|
||||||
|
@ApiParam("仓库代码")
|
||||||
|
public String storeCode;
|
||||||
|
|
||||||
|
@Column(name="store_name")
|
||||||
|
@ApiParam("仓库名称")
|
||||||
|
public String storeName;
|
||||||
|
}
|
Loading…
Reference in New Issue