1
2 天以前 70ecc717c746eef0c4503a19031ada582f5e94d1
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
36
37
38
39
package com.vincent.rsf.openApi.entity.phyz;
 
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 javax.validation.constraints.NotNull;
 
@Data
@JsonIgnoreProperties(ignoreUnknown = true)
@Accessors(chain = true)
@ApiModel(value = "Supplier", description = "供应商信息同步")
public class Supplier {
 
    // 供应商编码,唯一标识
    @NotNull
    @JsonProperty("supplierId")
    private String supplierId;
    // 供应商名称
    @JsonProperty("supplierName")
    private String supplierName;
    // 供应商昵称
    private String supplierNickName;
    // 供应商分组,国内,国外
    private String supplierGroup;
    // 联系人
    private String contact;
    // 联系电话
    private String telephone;
    // 邮箱
    private String email;
    // 地址
    private String address;
    // 操作类型,1 新增;2 修改;3禁用;4 反禁用;
    @JsonProperty("operateType")
    private Integer operateType;
}