package cn.iocoder.yudao.module.erp.controller.admin.sale.vo.customer;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.*;
|
import java.math.BigDecimal;
|
import java.time.LocalDateTime;
|
import cn.idev.excel.annotation.*;
|
import cn.iocoder.yudao.framework.excel.core.annotations.DictFormat;
|
import cn.iocoder.yudao.framework.excel.core.convert.DictConvert;
|
|
@Schema(description = "管理后台 - ERP 客户 Response VO")
|
@Data
|
@ExcelIgnoreUnannotated
|
public class ErpCustomerRespVO {
|
|
@Schema(description = "客户编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "27520")
|
@ExcelProperty("客户编号")
|
private Long id;
|
|
@Schema(description = "客户名称", requiredMode = Schema.RequiredMode.REQUIRED, example = "张三")
|
@ExcelProperty("客户名称")
|
private String name;
|
|
@Schema(description = "联系人", example = "老王")
|
@ExcelProperty("联系人")
|
private String contact;
|
|
@Schema(description = "手机号码", example = "15601691300")
|
@ExcelProperty("手机号码")
|
private String mobile;
|
|
@Schema(description = "联系电话", example = "15601691300")
|
@ExcelProperty("联系电话")
|
private String telephone;
|
|
@Schema(description = "电子邮箱", example = "7685323@qq.com")
|
@ExcelProperty("电子邮箱")
|
private String email;
|
|
@Schema(description = "传真", example = "20 7123 4567")
|
@ExcelProperty("传真")
|
private String fax;
|
|
@Schema(description = "备注", example = "你猜")
|
@ExcelProperty("备注")
|
private String remark;
|
|
@Schema(description = "开启状态", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
|
@ExcelProperty(value = "开启状态", converter = DictConvert.class)
|
@DictFormat("common_status") // TODO 代码优化:建议设置到对应的 DictTypeConstants 枚举类中
|
private Integer status;
|
|
@Schema(description = "排序", requiredMode = Schema.RequiredMode.REQUIRED, example = "10")
|
@ExcelProperty("排序")
|
private Integer sort;
|
|
@Schema(description = "纳税人识别号", example = "91130803MA098BY05W")
|
@ExcelProperty("纳税人识别号")
|
private String taxNo;
|
|
@Schema(description = "税率", example = "10")
|
@ExcelProperty("税率")
|
private BigDecimal taxPercent;
|
|
@Schema(description = "开户行", example = "芋艿")
|
@ExcelProperty("开户行")
|
private String bankName;
|
|
@Schema(description = "开户账号", example = "622908212277228617")
|
@ExcelProperty("开户账号")
|
private String bankAccount;
|
|
@Schema(description = "开户地址", example = "兴业银行浦东支行")
|
@ExcelProperty("开户地址")
|
private String bankAddress;
|
|
@Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED)
|
@ExcelProperty("创建时间")
|
private LocalDateTime createTime;
|
|
}
|