liding
2025-06-06 befc0e5606ab7c913dda0346152a4150d0ee5f79
basic-server/src/main/java/com/ruoyi/basic/entity/Customer.java
@@ -1,9 +1,12 @@
package com.ruoyi.basic.entity;
import com.baomidou.mybatisplus.annotation.*;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.MyBaseEntity;
import lombok.Data;
    import com.ruoyi.common.core.domain.BaseEntity;
/**
*  实体类
@@ -25,11 +28,13 @@
        /**
        * 客户名称,不能为空
        */
    @Excel(name = "客户名称")
            @TableField(value = "customer_name")
        private String customerName;
        /**
        * 纳税人识别号,中国大陆为统一社会信用代码,不能为空
        */
    @Excel(name = "纳税人识别号")
            @TableField(value = "taxpayer_id")
        private String taxpayerId;
        /**
@@ -50,26 +55,31 @@
        /**
        * 经营详细地址,默认空字符串
        */
    @Excel(name = "经营详细地址")
            @TableField(value = "business_address")
        private String businessAddress;
        /**
        * 银行账户号码,默认空字符串
        */
    @Excel(name = "银行账户")
            @TableField(value = "bank_account")
        private String bankAccount;
        /**
        * 开户银行名称,默认空字符串
        */
    @Excel(name = "开户行")
            @TableField(value = "bank_name")
        private String bankName;
        /**
        * 客户联系人姓名,默认空字符串
        */
    @Excel(name = "联系人")
            @TableField(value = "contact_person")
        private String contactPerson;
        /**
        * 联系人电话号码,默认空字符串
        */
    @Excel(name = "联系人电话")
            @TableField(value = "contact_phone")
        private String contactPhone;
        /**
@@ -90,16 +100,7 @@
        /**
        * 联系详细地址,默认空字符串
        */
    @Excel(name = "联系详细地址")
            @TableField(value = "contact_address")
        private String contactAddress;
        /**
        * 创建该记录的用户ID,默认0
        */
            @TableField(value = "create_user")
        private Long createUser;
        /**
        * 最后修改该记录的用户ID,默认0
        */
            @TableField(value = "update_user")
        private Long updateUser;
}