package com.ruoyi.cwgl.domain; import com.fasterxml.jackson.annotation.JsonFormat; import com.ruoyi.common.annotation.Excel; import com.baomidou.mybatisplus.annotation.TableField; import java.util.Date; import lombok.Data; /** * 客户管理对象 customer_management * * @author ruoyi * @date 2025-12-15 */ @Data public class CustomerManagement{ /** ID */ @TableField("id") private Integer id; /** 客户全称 */ @Excel(name = "客户全称") @TableField("customer_full_name") private String customerFullName; /** 客户简称 */ @Excel(name = "客户简称") @TableField("customer_short_name") private String customerShortName; /** 客户类型 */ @Excel(name = "客户类型") @TableField("customer_type") private String customerType; /** 联系人姓名 */ @Excel(name = "联系人姓名") @TableField("contact_person") private String contactPerson; /** 地址 */ @Excel(name = "地址") @TableField("address") private String address; /** 联系人电话 */ @Excel(name = "联系人电话") @TableField("contact_phone") private String contactPhone; /** 客户编码 */ @Excel(name = "客户编码") @TableField("customer_code") private String customerCode; /** 状态 */ @Excel(name = "状态") @TableField("status") private Integer status; /** 备注 */ @Excel(name = "备注") @TableField("remark") private String remark; /** 创建人 */ @TableField("create_by") private String createBy; /** 更新人 */ @TableField("update_by") private String updateBy; /** 创建时间 */ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") @TableField("create_time") private Date createTime; /** 更新时间 */ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") @TableField("update_time") private Date updateTime; /** 删除标记(0:正常;1:删除) */ @Excel(name = "删除标记(0:正常;1:删除)") @TableField("deleted") private Integer deleted; }