zhangzq
4 months ago
6 changed files with 116 additions and 8 deletions
@ -0,0 +1,47 @@ |
|||
/* |
|||
* Copyright 2019-2020 Zheng Jie |
|||
* |
|||
* Licensed under the Apache License, Version 2.0 (the "License"); |
|||
* you may not use this file except in compliance with the License. |
|||
* You may obtain a copy of the License at |
|||
* |
|||
* http://www.apache.org/licenses/LICENSE-2.0
|
|||
* |
|||
* Unless required by applicable law or agreed to in writing, software |
|||
* distributed under the License is distributed on an "AS IS" BASIS, |
|||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|||
* See the License for the specific language governing permissions and |
|||
* limitations under the License. |
|||
*/ |
|||
package org.nl.common.enums; |
|||
|
|||
import lombok.AllArgsConstructor; |
|||
import lombok.Getter; |
|||
|
|||
/** |
|||
* 载具美剧 |
|||
*/ |
|||
@Getter |
|||
@AllArgsConstructor |
|||
public enum VehicleEnum { |
|||
|
|||
/* 旧邮箱修改邮箱 */ |
|||
S("1", "小"), |
|||
/* 通过邮箱修改密码 */ |
|||
M("2", "中"), |
|||
L("3", "大"), |
|||
XL("4", "更大"); |
|||
|
|||
private final String code; |
|||
private final String description; |
|||
|
|||
public static VehicleEnum find(Integer code) { |
|||
for (VehicleEnum value : VehicleEnum.values()) { |
|||
if (code.equals(value.getCode())) { |
|||
return value; |
|||
} |
|||
} |
|||
return null; |
|||
} |
|||
|
|||
} |
@ -0,0 +1,39 @@ |
|||
package org.nl.wms.sch.point.service.dto; |
|||
|
|||
import com.baomidou.mybatisplus.annotation.TableField; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
import org.nl.wms.sch.point.service.dao.SchBasePoint; |
|||
|
|||
import java.io.Serializable; |
|||
import java.math.BigDecimal; |
|||
|
|||
/** |
|||
* @description / |
|||
* @author lyd |
|||
* @date 2023-05-15 |
|||
**/ |
|||
@Data |
|||
public class PointMaterialInfo extends SchBasePoint { |
|||
private static final long serialVersionUID = 1L; |
|||
@ApiModelProperty(value = "组盘标识") |
|||
private String group_id; |
|||
|
|||
@ApiModelProperty(value = "物料标识") |
|||
private String material_id; |
|||
|
|||
@ApiModelProperty(value = "批次") |
|||
private String pcsn; |
|||
|
|||
@ApiModelProperty(value = "物料数量") |
|||
private Integer material_qty; |
|||
|
|||
@ApiModelProperty(value = "物料重量") |
|||
private BigDecimal material_weight; |
|||
|
|||
@ApiModelProperty(value = "额外信息") |
|||
private String ext_data; |
|||
|
|||
private String region_name; |
|||
|
|||
} |
Loading…
Reference in new issue