lbq
2 天以前 1f2ab3faafd2c0e06d4aceb4bf5a815235a32608
rsf-open-api/src/main/java/com/vincent/rsf/openApi/entity/phyz/Pallet.java
@@ -1,5 +1,6 @@
package com.vincent.rsf.openApi.entity.phyz;
import com.alibaba.fastjson.annotation.JSONField;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.swagger.annotations.ApiModel;
@@ -17,20 +18,26 @@
    // 托盘条码
    @NotNull
    @JsonProperty("BarCode")
    @JSONField(name = "BarCode")
    private String barCode;
    // 托盘编码
    @JsonProperty("PalletCode")
    @JSONField(name = "PalletCode")
    private String palletCode;
    // 托盘名称
    @JsonProperty("PalletName")
    @JSONField(name = "PalletName")
    private String palletName;
    // 托盘类型编码
    @JsonProperty("PalletTypeCode")
    @JSONField(name = "PalletTypeCode")
    private String palletTypeCode;
    // 托盘类型
    @JsonProperty("PalletTypeName")
    @JSONField(name = "palletTypeName")
    private String palletTypeName;
    // 创建人
    @JsonProperty("CreatedBy")
    @JSONField(name = "CreatedBy")
    private String createdBy;
}