wms工厂仓库类书写
parent
c1ba26cbb4
commit
faa4fb075e
@ -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 : alwaysfrin
|
||||
* @CreateDate : 2018-09-04 15:58
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@Table(name="WH_STOCK_LOC")
|
||||
@Api("仓库库位")
|
||||
public class StockLocation extends BaseBean {
|
||||
|
||||
@Column(name="LOC_CODE")
|
||||
@ApiParam("仓库库位代码")
|
||||
public String locCode;
|
||||
|
||||
@Column(name="LOC_NAME")
|
||||
@ApiParam("仓库库位名称")
|
||||
public String locName;
|
||||
}
|
Loading…
Reference in New Issue