| | |
| | | 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 javax.validation.constraints.NotNull; |
| | | import jakarta.validation.constraints.NotNull; |
| | | |
| | | @Data |
| | | @JsonIgnoreProperties(ignoreUnknown = true) |
| | |
| | | private String supplierNickName; |
| | | // 供应商分组,国内,国外 |
| | | private String supplierGroup; |
| | | private String type = "供应商"; |
| | | // 联系人 |
| | | private String contact; |
| | | // 联系电话 |
| | |
| | | private String email; |
| | | // 地址 |
| | | private String address; |
| | | // 操作类型,1 新增;2 修改;3禁用;4 反禁用; |
| | | // 操作类型,0:新增、更新、解禁(只要调用了更新,就代表非禁用了) 1:禁用 |
| | | @JSONField(name = "OperateType", alternateNames = {"operateType"}) |
| | | @JsonProperty("operateType") |
| | | private Integer operateType; |
| | | } |