merge test
commit
281ef662b1
@ -0,0 +1,99 @@
|
||||
package cn.estsh.i3plus.pojo.wms.modelbean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
import javax.persistence.Entity;
|
||||
|
||||
/**
|
||||
* @Description : 报工事务明细表model
|
||||
* @Reference :
|
||||
* @Author : jason.niu
|
||||
* @CreateDate : 2020-05-11
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@Api("报工事务明细表model")
|
||||
public class WmsReportTransDetailModel extends BaseBean {
|
||||
private static final long serialVersionUID = 1547988564672291041L;
|
||||
@ApiParam(value = "报工产线")
|
||||
private String lineNo;
|
||||
|
||||
@ApiParam(value = "实际报工产线")
|
||||
private String reportLine;
|
||||
|
||||
@ApiParam(value = "班组名称")
|
||||
private String shiftNo;
|
||||
|
||||
@ApiParam(value = "班组描述")
|
||||
private String shiftName;
|
||||
|
||||
@ApiParam(value = "报工库区")
|
||||
private String zoneNo;
|
||||
|
||||
@ApiParam(value = "报工库位")
|
||||
private String locateNo;
|
||||
|
||||
@ApiParam(value = "报工条码")
|
||||
private String reportSn;
|
||||
|
||||
@ApiParam(value = "零件号")
|
||||
private String partNo;
|
||||
|
||||
@ApiParam(value = "零件名称")
|
||||
private String partName;
|
||||
|
||||
@ApiParam(value = "客户代码")
|
||||
private String custNo;
|
||||
|
||||
@ApiParam(value = "单位")
|
||||
private String unit;
|
||||
|
||||
@ApiParam(value = "数量")
|
||||
private Double qty;
|
||||
|
||||
@ApiParam(value = "包规")
|
||||
private String dateCode;
|
||||
|
||||
@ApiParam(value = "供应商批次")
|
||||
private Double snp;
|
||||
|
||||
@ApiParam(value = "收货批次")
|
||||
private String lotNo;
|
||||
|
||||
@ApiParam(value = "查询开始时间")
|
||||
private String startDateTime;
|
||||
|
||||
@ApiParam(value = "查询结束时间")
|
||||
private String endDateTime;
|
||||
|
||||
// , String createUser, String createDateTime
|
||||
public WmsReportTransDetailModel(String organizeCode, String lineNo, String actualReportLine, String shiftNo, String shiftName,
|
||||
String zoneNo, String locateNo, String sn, String partNo, String partNameRdd, String custNo,
|
||||
String unit, Double qty, String dateCode, Double snp, String lotNo, String createDateTime) {
|
||||
this.organizeCode = organizeCode;
|
||||
this.lineNo = lineNo;
|
||||
this.reportLine = actualReportLine;
|
||||
this.shiftNo = shiftNo;
|
||||
this.shiftName = shiftName;
|
||||
this.zoneNo = zoneNo;
|
||||
this.locateNo = locateNo;
|
||||
this.reportSn = sn;
|
||||
this.partNo = partNo;
|
||||
this.partName = partNameRdd;
|
||||
this.custNo = custNo;
|
||||
this.unit = unit;
|
||||
this.qty = qty;
|
||||
this.dateCode = dateCode;
|
||||
this.snp = snp;
|
||||
this.lotNo = lotNo;
|
||||
this.createDatetime = createDateTime;
|
||||
}
|
||||
|
||||
public WmsReportTransDetailModel() {
|
||||
|
||||
}
|
||||
}
|
@ -0,0 +1,58 @@
|
||||
package cn.estsh.i3plus.pojo.wms.modelbean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
import javax.persistence.Entity;
|
||||
|
||||
/**
|
||||
* @Description : 报工事务汇总表model
|
||||
* @Reference :
|
||||
* @Author : jason.niu
|
||||
* @CreateDate : 2020-05-11
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@Api("报工事务汇总表model")
|
||||
public class WmsReportTransMasterModel extends BaseBean {
|
||||
private static final long serialVersionUID = 5696795930973637987L;
|
||||
@ApiParam(value = "实体线")
|
||||
private String lineNo;
|
||||
|
||||
@ApiParam(value = "班组名称")
|
||||
private String shiftNo;
|
||||
|
||||
@ApiParam(value = "班组描述")
|
||||
private String shiftName;
|
||||
|
||||
@ApiParam(value = "报工库区")
|
||||
private String zoneNo;
|
||||
|
||||
@ApiParam(value = "零件号")
|
||||
private String partNo;
|
||||
|
||||
@ApiParam(value = "零件名称")
|
||||
private String partName;
|
||||
|
||||
@ApiParam(value = "报工数量")
|
||||
private Double qty;
|
||||
|
||||
public WmsReportTransMasterModel(String organizeCode, String lineNo, String shiftNo, String shiftName,
|
||||
String zoneNo, String partNo, String partNameRdd, Double qty) {
|
||||
this.organizeCode = organizeCode;
|
||||
this.lineNo = lineNo;
|
||||
this.shiftNo = shiftNo;
|
||||
this.shiftName = shiftName;
|
||||
this.zoneNo = zoneNo;
|
||||
this.partNo = partNo;
|
||||
this.partName = partNameRdd;
|
||||
this.qty = qty;
|
||||
}
|
||||
|
||||
public WmsReportTransMasterModel() {
|
||||
|
||||
}
|
||||
}
|
@ -0,0 +1,82 @@
|
||||
package cn.estsh.i3plus.pojo.wms.modelbean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
import javax.persistence.Entity;
|
||||
|
||||
/**
|
||||
* @Description : 供应商延迟到货明细表model
|
||||
* @Reference :
|
||||
* @Author : jason.niu
|
||||
* @CreateDate : 2020-05-11
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@Api("供应商延迟到货明细表model")
|
||||
public class WmsVendorDelayDetailModel extends BaseBean {
|
||||
|
||||
private static final long serialVersionUID = -1030326082916174340L;
|
||||
@ApiParam(value = "单据编号")
|
||||
private String orderNo;
|
||||
|
||||
@ApiParam(value = "完成状态")
|
||||
private Integer itemStatus;
|
||||
|
||||
@ApiParam(value = "零件号")
|
||||
private String partNo;
|
||||
|
||||
@ApiParam(value = "零件名称")
|
||||
private String partName;
|
||||
|
||||
@ApiParam(value = "总数量")
|
||||
private Double qty;
|
||||
|
||||
@ApiParam(value = "预交日期")
|
||||
private String planDate;
|
||||
|
||||
@ApiParam(value = "预交时间")
|
||||
private String planTime;
|
||||
|
||||
@ApiParam(value = "收货日期")
|
||||
private String recDate;
|
||||
|
||||
@ApiParam(value = "收货时间")
|
||||
private String recTime;
|
||||
|
||||
@ApiParam(value = "供应商代码")
|
||||
private String vendorNo;
|
||||
|
||||
@ApiParam(value = "供应商名称")
|
||||
private String vendorName;
|
||||
|
||||
@ApiParam(value = "查询开始时间")
|
||||
private String startDateTime;
|
||||
|
||||
@ApiParam(value = "查询结束时间")
|
||||
private String endDateTime;
|
||||
|
||||
public WmsVendorDelayDetailModel(String orderNo, Integer itemStatus, String partNo, String partName, Double qty,
|
||||
String planDate, String planTime, String recDate, String recTime, String vendorNo, String vendorName, String organizeCode, String createDateTime) {
|
||||
this.orderNo = orderNo;
|
||||
this.itemStatus = itemStatus;
|
||||
this.partNo = partNo;
|
||||
this.partName = partName;
|
||||
this.qty = qty;
|
||||
this.planDate = planDate;
|
||||
this.planTime = planTime;
|
||||
this.recDate = recDate;
|
||||
this.recTime = recTime;
|
||||
this.vendorNo = vendorNo;
|
||||
this.vendorName = vendorName;
|
||||
this.organizeCode = organizeCode;
|
||||
this.createDatetime = createDateTime;
|
||||
}
|
||||
|
||||
public WmsVendorDelayDetailModel() {
|
||||
|
||||
}
|
||||
}
|
@ -0,0 +1,49 @@
|
||||
package cn.estsh.i3plus.pojo.wms.modelbean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
import javax.persistence.Entity;
|
||||
|
||||
/**
|
||||
* @Description : 供应商延迟到货汇总表model
|
||||
* @Reference :
|
||||
* @Author : jason.niu
|
||||
* @CreateDate : 2020-05-11
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@Api("供应商延迟到货汇总表model")
|
||||
public class WmsVendorDelayMasterModel extends BaseBean {
|
||||
|
||||
private static final long serialVersionUID = 1589775350017343999L;
|
||||
@ApiParam(value = "供应商代码")
|
||||
private String vendorNo;
|
||||
|
||||
@ApiParam(value = "供应商名称")
|
||||
private String vendorName;
|
||||
|
||||
@ApiParam(value = "延迟次数")
|
||||
private Long delayCount;
|
||||
|
||||
@ApiParam(value = "查询开始时间")
|
||||
private String startDateTime;
|
||||
|
||||
@ApiParam(value = "查询结束时间")
|
||||
private String endDateTime;
|
||||
|
||||
public WmsVendorDelayMasterModel(String vendorNo, String vendorName, Long count, String organizeCode, String createDateTime) {
|
||||
this.vendorNo = vendorNo;
|
||||
this.vendorName = vendorName;
|
||||
this.delayCount = count;
|
||||
this.organizeCode = organizeCode;
|
||||
this.createDatetime = createDateTime;
|
||||
}
|
||||
|
||||
public WmsVendorDelayMasterModel() {
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue