package cn.iocoder.yudao.module.srm.controller.admin.supplier.vo;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.time.LocalDateTime;
|
|
@Schema(description = "管理后台 - 供应商 Response VO")
|
@Data
|
public class SrmSupplierRespVO {
|
|
@Schema(description = "供应商ID")
|
private Long id;
|
|
@Schema(description = "供应商编码")
|
private String code;
|
|
@Schema(description = "供应商名称")
|
private String name;
|
|
@Schema(description = "供应商简称")
|
private String shortName;
|
|
@Schema(description = "供应商类型")
|
private String type;
|
|
@Schema(description = "企业性质")
|
private String companyNature;
|
|
@Schema(description = "注册资金(万元)")
|
private BigDecimal registeredCapital;
|
|
@Schema(description = "营业执照编号")
|
private String businessLicenseNo;
|
|
@Schema(description = "税号")
|
private String taxNo;
|
|
@Schema(description = "法人代表")
|
private String legalPerson;
|
|
@Schema(description = "公司地址")
|
private String address;
|
|
@Schema(description = "公司网址")
|
private String website;
|
|
@Schema(description = "联系人")
|
private String contactName;
|
|
@Schema(description = "联系电话")
|
private String contactMobile;
|
|
@Schema(description = "邮箱")
|
private String contactEmail;
|
|
@Schema(description = "开户银行")
|
private String bankName;
|
|
@Schema(description = "银行账号")
|
private String bankAccount;
|
|
@Schema(description = "状态(0启用 1禁用)")
|
private Integer status;
|
|
@Schema(description = "备注")
|
private String remark;
|
|
@Schema(description = "创建时间")
|
private LocalDateTime createTime;
|
|
}
|