新增事务报工查询
parent
1a5f3e7325
commit
4d383dda1b
@ -0,0 +1,19 @@
|
||||
package cn.estsh.i3plus.pojo.wms.dto;
|
||||
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class VendorDelayArrivedDto {
|
||||
@ApiParam(value = "供应商代码")
|
||||
private String vendorNo;
|
||||
|
||||
@ApiParam(value = "供应商名称")
|
||||
private String vendorName;
|
||||
|
||||
@ApiParam(value = "延迟次数")
|
||||
private Integer delayCount;
|
||||
|
||||
@ApiParam(value = "工厂代码")
|
||||
private String organizeCode;
|
||||
}
|
@ -0,0 +1,30 @@
|
||||
package cn.estsh.i3plus.pojo.wms.dto;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.common.Pager;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class VendorDelayQueryDto extends Pager {
|
||||
|
||||
@ApiParam(value = "工厂代码")
|
||||
private String organizeCode;
|
||||
|
||||
@ApiParam(value = "供应商代码")
|
||||
private String vendorNo;
|
||||
|
||||
@ApiParam(value = "零件号")
|
||||
private String partNo;
|
||||
|
||||
@ApiParam(value = "完成状态")
|
||||
private String completeStatus;
|
||||
|
||||
@ApiParam(value = "单据编号")
|
||||
private String orderNo;
|
||||
|
||||
@ApiParam(value = "开始时间")
|
||||
private String startDateTime;
|
||||
|
||||
@ApiParam(value = "结束时间")
|
||||
private String endDateTime;
|
||||
}
|
Loading…
Reference in New Issue