zhou zhou
14 小时以前 830bb157b5e46a6c041d5f0c0a883a22e37cb0f7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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;
import lombok.Data;
import lombok.experimental.Accessors;
 
import jakarta.validation.constraints.NotNull;
 
@Data
@JsonIgnoreProperties(ignoreUnknown = true)
@Accessors(chain = true)
@ApiModel(value = "Warehouse", description = "仓库信息同步")
public class Warehouse {
 
    // 仓库编码,唯一标识
    @NotNull
    @JsonProperty("wareHouseId")
    private String wareHouseId;
    // 仓库名称
    @JsonProperty("wareHouseName")
    private String wareHouseName;
    // 仓库位置
    private String address;
    // 使用组织编码
    private String useOrgId;
    // 使用组织名称
    private String useOrgName;
    // 操作类型,0:新增、更新、解禁(只要调用了更新,就代表非禁用了)  1:禁用
    @JSONField(name = "OperateType", alternateNames = {"operateType"})
    @JsonProperty("operateType")
    private Integer operateType;
}