package cn.iocoder.yudao.module.erp.controller.admin.sale.vo.customer; import io.swagger.v3.oas.annotations.media.Schema; import lombok.*; import java.util.*; import jakarta.validation.constraints.*; import java.math.BigDecimal; @Schema(description = "管理后台 - ERP 客户新增/修改 Request VO") @Data public class ErpCustomerSaveReqVO { @Schema(description = "客户编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "27520") private Long id; @Schema(description = "客户名称", requiredMode = Schema.RequiredMode.REQUIRED, example = "张三") @NotEmpty(message = "客户名称不能为空") private String name; @Schema(description = "联系人", example = "老王") private String contact; @Schema(description = "手机号码", example = "15601691300") private String mobile; @Schema(description = "联系电话", example = "15601691300") private String telephone; @Schema(description = "电子邮箱", example = "7685323@qq.com") private String email; @Schema(description = "传真", example = "20 7123 4567") private String fax; @Schema(description = "备注", example = "你猜") private String remark; @Schema(description = "开启状态", requiredMode = Schema.RequiredMode.REQUIRED, example = "1") @NotNull(message = "开启状态不能为空") private Integer status; @Schema(description = "排序", requiredMode = Schema.RequiredMode.REQUIRED, example = "10") @NotNull(message = "排序不能为空") private Integer sort; @Schema(description = "纳税人识别号", example = "91130803MA098BY05W") private String taxNo; @Schema(description = "税率", example = "10") private BigDecimal taxPercent; @Schema(description = "开户行", example = "芋艿") private String bankName; @Schema(description = "开户账号", example = "622908212277228617") private String bankAccount; @Schema(description = "开户地址", example = "兴业银行浦东支行") private String bankAddress; }