Merge remote-tracking branch 'origin/test' into test
commit
3bad341970
@ -0,0 +1,49 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.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.io.Serializable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description:
|
||||||
|
* @Author: jokelin
|
||||||
|
* @Date: 2020/4/20 5:16 下午
|
||||||
|
* @Modify:
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Table(name = "MES_ENUM")
|
||||||
|
@Api("MES_枚举表")
|
||||||
|
public class MesEnum extends BaseBean implements Serializable {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = 368174781823424116L;
|
||||||
|
|
||||||
|
@Column(name = "ENUM_CODE")
|
||||||
|
@ApiParam("枚举代码")
|
||||||
|
private String enumCode;
|
||||||
|
|
||||||
|
@Column(name = "ENUM_NAME")
|
||||||
|
@ApiParam("枚举名称")
|
||||||
|
private String enumName;
|
||||||
|
|
||||||
|
@Column(name = "ENUM_VALUE")
|
||||||
|
@ApiParam("枚举值")
|
||||||
|
private String enumValue;
|
||||||
|
|
||||||
|
@Column(name = "ENUM_VALUE_DESC")
|
||||||
|
@ApiParam("枚举值描述")
|
||||||
|
private String enumValueDesc;
|
||||||
|
}
|
@ -0,0 +1,14 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.repository;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.mes.bean.MesEnum;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description:
|
||||||
|
* @Reference:
|
||||||
|
* @Author: joke.wang
|
||||||
|
* @CreateDate: 2019\11\18 10:32
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
public interface MesEnumRepository extends BaseRepository<MesEnum, Long> {
|
||||||
|
}
|
@ -0,0 +1,52 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.model.wms;
|
||||||
|
|
||||||
|
import io.swagger.annotations.Api;
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description 北京麦格纳BBAC库存扣减MODEL
|
||||||
|
* @Reference
|
||||||
|
* @Author dragon
|
||||||
|
* @CreateDate 2020/11/22 14:46
|
||||||
|
* @Modify
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@Api("北京麦格纳BBAC库存扣减MODEL")
|
||||||
|
public class WmsBjmgnBbacReductModel implements Serializable {
|
||||||
|
@ApiParam("JIS号")
|
||||||
|
public String jisNo;
|
||||||
|
@ApiParam("物料号")
|
||||||
|
public String partNo;
|
||||||
|
@ApiParam("项目编码")
|
||||||
|
public String projectNo;
|
||||||
|
@ApiParam("客户编码")
|
||||||
|
public String custNo;
|
||||||
|
@ApiParam("存储区")
|
||||||
|
public String zoneNo;
|
||||||
|
@ApiParam("ERP库存地")
|
||||||
|
public String erpAreaNo;
|
||||||
|
@ApiParam("项目名称")
|
||||||
|
public String projectName;
|
||||||
|
@ApiParam("数量")
|
||||||
|
public Double qty;
|
||||||
|
@ApiParam("单位")
|
||||||
|
public String unit;
|
||||||
|
|
||||||
|
public WmsBjmgnBbacReductModel() {
|
||||||
|
}
|
||||||
|
|
||||||
|
public WmsBjmgnBbacReductModel(String custNo,String zoneNo,String jisNo, String partNo, String projectNo,
|
||||||
|
Double qty, String unit) {
|
||||||
|
this.custNo = custNo;
|
||||||
|
this.zoneNo = zoneNo;
|
||||||
|
this.jisNo = jisNo;
|
||||||
|
this.partNo = partNo;
|
||||||
|
this.projectNo = projectNo;
|
||||||
|
this.qty = qty;
|
||||||
|
this.unit = unit;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue