forked from sfms3.0/sfms3.0
6 changed files with 9 additions and 230 deletions
@ -1,166 +0,0 @@ |
|||
package com.win.module.wms.controller.purchasereceiptJob.vo; |
|||
|
|||
import com.win.framework.common.pojo.PageParam; |
|||
import io.swagger.v3.oas.annotations.media.Schema; |
|||
import lombok.Data; |
|||
import lombok.EqualsAndHashCode; |
|||
import lombok.ToString; |
|||
import org.springframework.format.annotation.DateTimeFormat; |
|||
|
|||
import javax.validation.constraints.NotNull; |
|||
import java.math.BigDecimal; |
|||
import java.time.LocalDateTime; |
|||
import java.util.List; |
|||
|
|||
import static com.win.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND; |
|||
|
|||
@Schema(description = "管理后台 - 采购收货任务主接收类接收多个任务状态 Response VO") |
|||
@Data |
|||
@EqualsAndHashCode(callSuper = true) |
|||
@ToString(callSuper = true) |
|||
public class PurchasereceiptJobMainRespTypesVO extends PageParam { |
|||
|
|||
@Schema(description = "申请单号") |
|||
private String requestNumber; |
|||
|
|||
@Schema(description = "发货单号") |
|||
private String asnNumber; |
|||
|
|||
@Schema(description = "要货计划单号") |
|||
private String ppNumber; |
|||
|
|||
@Schema(description = "供应商代码") |
|||
private String supplierCode; |
|||
|
|||
@Schema(description = "到月台代码") |
|||
private String toDockCode; |
|||
|
|||
@Schema(description = "承运商") |
|||
private String carrierCode; |
|||
|
|||
@Schema(description = "运输方式") |
|||
private String transferMode; |
|||
|
|||
@Schema(description = "车牌号") |
|||
private String vehiclePlateNumber; |
|||
|
|||
@Schema(description = "从仓库代码") |
|||
private String fromWarehouseCode; |
|||
|
|||
@Schema(description = "到仓库代码") |
|||
private String toWarehouseCode; |
|||
|
|||
@Schema(description = "申请时间") |
|||
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND) |
|||
private LocalDateTime[] requestTime; |
|||
|
|||
@Schema(description = "要求截止时间") |
|||
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND) |
|||
private LocalDateTime[] requestDueTime; |
|||
|
|||
@Schema(description = "状态") |
|||
private String status; |
|||
|
|||
@Schema(description = "过期时间") |
|||
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND) |
|||
private LocalDateTime[] expiredTime; |
|||
|
|||
@Schema(description = "最后更新时间") |
|||
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND) |
|||
private LocalDateTime[] updateTime; |
|||
|
|||
@Schema(description = "最后更新者Id") |
|||
private String updater; |
|||
|
|||
@Schema(description = "状态") |
|||
private String jobStageStatus; |
|||
|
|||
@Schema(description = "优先级") |
|||
private Integer priority; |
|||
|
|||
@Schema(description = "优先级增量") |
|||
private Integer priorityIncrement; |
|||
|
|||
@Schema(description = "部门") |
|||
private String departmentCode; |
|||
|
|||
@Schema(description = "岗位") |
|||
private String userPositionCode; |
|||
|
|||
@Schema(description = "承接人用户ID") |
|||
private String acceptUserId; |
|||
|
|||
@Schema(description = "承接时间") |
|||
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND) |
|||
private LocalDateTime[] acceptTime; |
|||
|
|||
@Schema(description = "完成人用户ID") |
|||
private String completeUserId; |
|||
|
|||
@Schema(description = "完成时间") |
|||
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND) |
|||
private LocalDateTime[] completeTime; |
|||
|
|||
@Schema(description = "从库位类型范围") |
|||
private String fromLocationTypes; |
|||
|
|||
@Schema(description = "到库位类型范围") |
|||
private String toLocationTypes; |
|||
|
|||
@Schema(description = "单据号") |
|||
private String number; |
|||
|
|||
@Schema(description = "业务类型") |
|||
private String businessType; |
|||
|
|||
@Schema(description = "备注") |
|||
private String remark; |
|||
|
|||
@Schema(description = "创建时间") |
|||
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND) |
|||
private LocalDateTime[] createTime; |
|||
|
|||
@Schema(description = "创建者id") |
|||
private String creator; |
|||
|
|||
@Schema(description = "允许修改批次") |
|||
private String allowModifyBatch; |
|||
|
|||
@Schema(description = "从库区代码范围") |
|||
private String fromAreaCodes; |
|||
|
|||
@Schema(description = "到库位代码范围") |
|||
private String toAreaCodes; |
|||
|
|||
@Schema(description = "自动完成") |
|||
private String autoComplete; |
|||
|
|||
@Schema(description = "允许修改库位") |
|||
private String allowModifyLocation; |
|||
|
|||
@Schema(description = "允许修改数量") |
|||
private String allowModifyQty; |
|||
|
|||
@Schema(description = "允许大于推荐数量") |
|||
private String allowBiggerQty; |
|||
|
|||
@Schema(description = "允许小于推荐数量") |
|||
private String allowSmallerQty; |
|||
|
|||
@Schema(description = "允许修改库存状态") |
|||
private String allowModifyInventoryStatus; |
|||
|
|||
@Schema(description = "允许连续扫描") |
|||
private String allowContinuousScanning; |
|||
|
|||
@Schema(description = "允许部分完成") |
|||
private String allowPartialComplete; |
|||
|
|||
@Schema(description = "允许修改箱码") |
|||
private String allowModifyPackingNumber; |
|||
|
|||
@Schema(description = "任务状态list可以为空", requiredMode = Schema.RequiredMode.REQUIRED) |
|||
private List types; |
|||
|
|||
|
|||
} |
Loading…
Reference in new issue