package com.gkhy.exam.system.domain; 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 io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import java.io.Serializable; import java.time.LocalDateTime; @Data @TableName("customer_inventory") @ApiModel(value = "CustomerInventory", description = "顾客清单表") public class CustomerInventory implements Serializable { @ApiModelProperty("主键") @TableId(value = "id", type = IdType.AUTO) private Integer id; @ApiModelProperty(value = "企业id",required = true) @TableField("company_id") private Integer companyId; @TableField(exist = false) private String companyName; @ApiModelProperty(value = "顾客名称") @TableField("customer_name") private String customerName; @ApiModelProperty(value = "顾客地址") @TableField("customer_addr") private String customerAddr; @ApiModelProperty(value = "联系人") @TableField("person") private String person; @ApiModelProperty(value = "联系电话") @TableField("phone") private String phone; @ApiModelProperty(value = "邮件") @TableField("emil") private String emil; @ApiModelProperty(value = "备注") @TableField("remark") private String remark; @TableField("del_flag") private Integer delFlag; @TableField("create_by") private String createBy; @TableField("create_time") private LocalDateTime createTime; @TableField("update_by") private String updateBy; @TableField("update_time") private LocalDateTime updateTime; }