Merge branch 'dev' of http://git.estsh.com/i3-IMPP/i3plus-pojo into dev
commit
f349690cbb
@ -0,0 +1,41 @@
|
|||||||
|
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 lombok.EqualsAndHashCode;
|
||||||
|
import org.hibernate.annotations.DynamicInsert;
|
||||||
|
import org.hibernate.annotations.DynamicUpdate;
|
||||||
|
|
||||||
|
import javax.persistence.Column;
|
||||||
|
import javax.persistence.Entity;
|
||||||
|
import javax.persistence.Table;
|
||||||
|
import javax.persistence.Transient;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : 产品项目
|
||||||
|
* @Reference :
|
||||||
|
* @Author : jessica
|
||||||
|
* @CreateDate : 2019-06-10 15:58
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Table(name="WMS_PROD_CFG_TYPE")
|
||||||
|
@Api("项目信息")
|
||||||
|
public class WmsProdCfgType extends BaseBean {
|
||||||
|
|
||||||
|
@Column(name="PROD_CFG_TYPE_CODE")
|
||||||
|
@ApiParam("项目代码")
|
||||||
|
public String prodCfgTypeCode;
|
||||||
|
|
||||||
|
@Column(name="PROD_CFG_TYPE_NAME")
|
||||||
|
@ApiParam("项目名称")
|
||||||
|
public String prodCfgTypeName;
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue