【657】【中航WMS看板-成品发运率看板】
【658】【中航WMS看板-发运窗口时间看板】 【656】【 中航WMS看板-收货完成率看板】 【655】【 中航WMS看板-仓库预警看板】 【654】【中航WMS看板-30天供应商延期到货跟踪动态看板】yun-zuoyi
parent
6190a4f66d
commit
2303186fc4
@ -0,0 +1,57 @@
|
||||
package cn.estsh.i3plus.pojo.wms.dto;
|
||||
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
import org.hibernate.annotations.GenericGenerator;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.GeneratedValue;
|
||||
import javax.persistence.Id;
|
||||
|
||||
/**
|
||||
* @Description :窗口输出类
|
||||
* @Reference :
|
||||
* @Author :QianHuaSheng
|
||||
* @CreateDate : 2020-04-21 2:37 下午
|
||||
* @Modify:
|
||||
**/
|
||||
@Entity
|
||||
@Data
|
||||
@Api("窗口输出类")
|
||||
public class WmsCustWindowDto {
|
||||
|
||||
@Id
|
||||
@GeneratedValue(generator = "IDGenerator")
|
||||
@GenericGenerator(name = "IDGenerator", strategy = "assigned")
|
||||
@Column(name = "ID")
|
||||
@ApiParam(value = "主键", example = "0")
|
||||
public Long id;
|
||||
|
||||
|
||||
@ApiParam(value = "窗口时间")
|
||||
private String custWindowTime;
|
||||
|
||||
@ApiParam(value = "星期一客户")
|
||||
private String mondayCust;
|
||||
|
||||
@ApiParam(value = "星期二客户")
|
||||
private String tuesdayCust;
|
||||
|
||||
@ApiParam(value = "星期三客户")
|
||||
private String wednesdayCust;
|
||||
|
||||
@ApiParam(value = "星期四客户")
|
||||
private String thursdayCust;
|
||||
|
||||
@ApiParam(value = "星期五客户")
|
||||
private String fridayCust;
|
||||
|
||||
@ApiParam(value = "星期六客户")
|
||||
private String saturdayCust;
|
||||
|
||||
@ApiParam(value = "星期日客户")
|
||||
private String sundayCust;
|
||||
|
||||
}
|
@ -0,0 +1,45 @@
|
||||
package cn.estsh.i3plus.pojo.wms.dto;
|
||||
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
import org.hibernate.annotations.GenericGenerator;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.GeneratedValue;
|
||||
import javax.persistence.Id;
|
||||
|
||||
/**
|
||||
* @Description :移动单效率(出参)
|
||||
* @Reference :
|
||||
* @Author :QianHuaSheng
|
||||
* @CreateDate : 2020-04-10 3:21 下午
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@Api("移动单效率(出参)")
|
||||
public class WmsMoveMovementEffectivenessDto {
|
||||
|
||||
@Id
|
||||
@GeneratedValue(generator = "IDGenerator")
|
||||
@GenericGenerator(name = "IDGenerator", strategy = "assigned")
|
||||
@Column(name = "ID")
|
||||
@ApiParam(value = "主键", example = "0")
|
||||
public Long id;
|
||||
|
||||
@ApiParam(value = "日期")
|
||||
private String date;
|
||||
|
||||
@ApiParam(value = "比列")
|
||||
private Double percentage;
|
||||
|
||||
public WmsMoveMovementEffectivenessDto(String date, Double percentage) {
|
||||
this.date = date;
|
||||
this.percentage = percentage;
|
||||
}
|
||||
|
||||
public WmsMoveMovementEffectivenessDto() {
|
||||
}
|
||||
}
|
@ -0,0 +1,75 @@
|
||||
package cn.estsh.i3plus.pojo.wms.dto;
|
||||
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
import org.hibernate.annotations.GenericGenerator;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.GeneratedValue;
|
||||
import javax.persistence.Id;
|
||||
|
||||
/**
|
||||
* @Description :装车单打印输出model(出参)
|
||||
* @Reference :
|
||||
* @Author :QianHuaSheng
|
||||
* @CreateDate : 2020-04-10 3:21 下午
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@Api("静态盘点查询输出实体类")
|
||||
public class WmsStockSnDto {
|
||||
|
||||
@Id
|
||||
@GeneratedValue(generator = "IDGenerator")
|
||||
@GenericGenerator(name = "IDGenerator", strategy = "assigned")
|
||||
@Column(name = "ID")
|
||||
@ApiParam(value = "主键", example = "0")
|
||||
public Long id;
|
||||
|
||||
@ApiParam(value = "库位")
|
||||
private String locateNo;
|
||||
@ApiParam(value = "物料号")
|
||||
private String partNo;
|
||||
@ApiParam(value = "物料名称")
|
||||
private String partNameRdd;
|
||||
@ApiParam(value = "数量")
|
||||
private Double qty;
|
||||
@ApiParam(value = "生产批次")
|
||||
private String dateCode;
|
||||
|
||||
@ApiParam(value = "规格")
|
||||
private String partSpec;
|
||||
|
||||
@ApiParam(value = "存储区")
|
||||
private String zoneNo;
|
||||
|
||||
public WmsStockSnDto(String locateNo, String partNo, String partNameRdd, Double qty, String dateCode) {
|
||||
this.locateNo = locateNo;
|
||||
this.partNo = partNo;
|
||||
this.partNameRdd = partNameRdd;
|
||||
this.qty = qty;
|
||||
this.dateCode = dateCode;
|
||||
}
|
||||
|
||||
public WmsStockSnDto(String locateNo, String partNo, String partNameRdd, Double qty, String dateCode, String partSpec) {
|
||||
this.locateNo = locateNo;
|
||||
this.partNo = partNo;
|
||||
this.partNameRdd = partNameRdd;
|
||||
this.qty = qty;
|
||||
this.dateCode = dateCode;
|
||||
this.partSpec = partSpec;
|
||||
}
|
||||
|
||||
public WmsStockSnDto(String locateNo, String partNo, String partNameRdd, Double qty, String dateCode, String partSpec, String zoneNo) {
|
||||
this.locateNo = locateNo;
|
||||
this.partNo = partNo;
|
||||
this.partNameRdd = partNameRdd;
|
||||
this.qty = qty;
|
||||
this.dateCode = dateCode;
|
||||
this.partSpec = partSpec;
|
||||
this.zoneNo = zoneNo;
|
||||
}
|
||||
}
|
@ -0,0 +1,35 @@
|
||||
package cn.estsh.i3plus.pojo.wms.dto;
|
||||
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Description :供应商延期输出实体类(出参)
|
||||
* @Reference :
|
||||
* @Author :QianHuaSheng
|
||||
* @CreateDate : 2020-04-10 3:21 下午
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Api("供应商延期输出实体类")
|
||||
public class WmsSupplierExtensionDto {
|
||||
|
||||
@ApiParam(value = "序号")
|
||||
private Integer rn;
|
||||
|
||||
@ApiParam(value = "供应商编号")
|
||||
private String vendorNo;
|
||||
|
||||
@ApiParam(value = "数量")
|
||||
private Integer num;
|
||||
|
||||
public WmsSupplierExtensionDto() {
|
||||
|
||||
}
|
||||
|
||||
public WmsSupplierExtensionDto(String vendorNo, Integer num) {
|
||||
this.vendorNo = vendorNo;
|
||||
this.num = num;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue