5 changed files with 347 additions and 49 deletions
@ -0,0 +1,114 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.distribution.dto; |
||||
|
||||
import lombok.Data; |
||||
import org.springblade.core.tool.utils.StringUtil; |
||||
|
||||
import javax.validation.constraints.NotEmpty; |
||||
import java.io.Serializable; |
||||
|
||||
/** |
||||
* OrderStatus |
||||
* |
||||
* @author zhy |
||||
* @since 2023-06-12 |
||||
*/ |
||||
@Data |
||||
public class OrderStatusDTO implements Serializable { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
@NotEmpty(message = "派车单号不能为空") |
||||
private String dispatchNumber;//派车单号
|
||||
|
||||
@NotEmpty(message = "客户订单号不能为空") |
||||
private String orderNo;//客户订单号
|
||||
|
||||
@NotEmpty(message = "工厂ID不能为空") |
||||
private String plantId;//工厂ID
|
||||
|
||||
@NotEmpty(message = "物流单号不能为空") |
||||
private String logiBillNo;//物流单号
|
||||
|
||||
@NotEmpty(message = "包件码不能为空") |
||||
private String unitNo;//包件码
|
||||
|
||||
@NotEmpty(message = "操作时间不能为空") |
||||
private String operationTime;//操作时间
|
||||
|
||||
@NotEmpty(message = "当前仓库不能为空") |
||||
private String currentWarehouse;//当前仓库
|
||||
|
||||
@NotEmpty(message = "目的仓库不能为空") |
||||
private String destinationWarehouse;//目的仓库
|
||||
|
||||
@NotEmpty(message = "状态不能为空") |
||||
private String status;//状态
|
||||
|
||||
@NotEmpty(message = "送货任务ID不能为空") |
||||
private String distributionContactId; |
||||
|
||||
@NotEmpty(message = "托盘id") |
||||
private Integer trayId; |
||||
|
||||
@NotEmpty(message = "托盘编码") |
||||
private String trayNo; |
||||
|
||||
@NotEmpty(message = "操作人名称") |
||||
private String username; |
||||
|
||||
|
||||
/** |
||||
* 验证参数是否都存在 |
||||
* @return |
||||
*/ |
||||
public boolean verifyData(){ |
||||
if(StringUtil.isBlank(dispatchNumber)){ |
||||
return false; |
||||
} |
||||
if(StringUtil.isBlank(orderNo)){ |
||||
return false; |
||||
} |
||||
if(StringUtil.isBlank(plantId)){ |
||||
return false; |
||||
} |
||||
if(StringUtil.isBlank(logiBillNo)){ |
||||
return false; |
||||
} |
||||
if(StringUtil.isBlank(unitNo)){ |
||||
return false; |
||||
} |
||||
if(StringUtil.isBlank(operationTime)){ |
||||
return false; |
||||
} |
||||
if(StringUtil.isBlank(currentWarehouse)){ |
||||
return false; |
||||
} |
||||
if(StringUtil.isBlank(destinationWarehouse)){ |
||||
return false; |
||||
} |
||||
if(StringUtil.isBlank(status)){ |
||||
return false; |
||||
} |
||||
if(StringUtil.isBlank(distributionContactId)){ |
||||
return false; |
||||
} |
||||
return true; |
||||
} |
||||
|
||||
|
||||
} |
@ -0,0 +1,114 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.trunkline.dto; |
||||
|
||||
import lombok.Data; |
||||
import org.springblade.core.tool.utils.StringUtil; |
||||
|
||||
import javax.validation.constraints.NotEmpty; |
||||
import java.io.Serializable; |
||||
|
||||
/** |
||||
* OrderStatus |
||||
* |
||||
* @author zhy |
||||
* @since 2023-06-12 |
||||
*/ |
||||
@Data |
||||
public class OrderStatusDTO implements Serializable { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
@NotEmpty(message = "派车单号不能为空") |
||||
private String dispatchNumber;//派车单号
|
||||
|
||||
@NotEmpty(message = "客户订单号不能为空") |
||||
private String orderNo;//客户订单号
|
||||
|
||||
@NotEmpty(message = "工厂ID不能为空") |
||||
private String plantId;//工厂ID
|
||||
|
||||
@NotEmpty(message = "物流单号不能为空") |
||||
private String logiBillNo;//物流单号
|
||||
|
||||
@NotEmpty(message = "包件码不能为空") |
||||
private String unitNo;//包件码
|
||||
|
||||
@NotEmpty(message = "操作时间不能为空") |
||||
private String operationTime;//操作时间
|
||||
|
||||
@NotEmpty(message = "当前仓库不能为空") |
||||
private String currentWarehouse;//当前仓库
|
||||
|
||||
@NotEmpty(message = "目的仓库不能为空") |
||||
private String destinationWarehouse;//目的仓库
|
||||
|
||||
@NotEmpty(message = "状态不能为空") |
||||
private String status;//状态
|
||||
|
||||
@NotEmpty(message = "送货任务ID不能为空") |
||||
private String distributionContactId; |
||||
|
||||
@NotEmpty(message = "托盘id") |
||||
private Integer trayId; |
||||
|
||||
@NotEmpty(message = "托盘编码") |
||||
private String trayNo; |
||||
|
||||
@NotEmpty(message = "操作人名称") |
||||
private String username; |
||||
|
||||
|
||||
/** |
||||
* 验证参数是否都存在 |
||||
* @return |
||||
*/ |
||||
public boolean verifyData(){ |
||||
if(StringUtil.isBlank(dispatchNumber)){ |
||||
return false; |
||||
} |
||||
if(StringUtil.isBlank(orderNo)){ |
||||
return false; |
||||
} |
||||
if(StringUtil.isBlank(plantId)){ |
||||
return false; |
||||
} |
||||
if(StringUtil.isBlank(logiBillNo)){ |
||||
return false; |
||||
} |
||||
if(StringUtil.isBlank(unitNo)){ |
||||
return false; |
||||
} |
||||
if(StringUtil.isBlank(operationTime)){ |
||||
return false; |
||||
} |
||||
if(StringUtil.isBlank(currentWarehouse)){ |
||||
return false; |
||||
} |
||||
if(StringUtil.isBlank(destinationWarehouse)){ |
||||
return false; |
||||
} |
||||
if(StringUtil.isBlank(status)){ |
||||
return false; |
||||
} |
||||
if(StringUtil.isBlank(distributionContactId)){ |
||||
return false; |
||||
} |
||||
return true; |
||||
} |
||||
|
||||
|
||||
} |
Loading…
Reference in new issue