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; @Data @TableName("customer_record_need") @ApiModel(value = "CustomerRecordNeed", description = "顾客需求登记副表") public class CustomerRecordNeed implements Serializable { @ApiModelProperty("主键") @TableId(value = "id", type = IdType.AUTO) private Integer id; @ApiModelProperty(value = "主表id",required = true) @TableField("record_id") private Integer recordId; @ApiModelProperty(value = "顾客名称") @TableField("customer_name") private String customerName; @ApiModelProperty(value = "顾客需求 1走访 2网调 3其他") @TableField("customer_need") private String customerNeed; @ApiModelProperty(value = "需求来源") @TableField("need_source") private String needSource; @ApiModelProperty(value = "登记人") @TableField("registrant_id") private Integer registrantId; @TableField(exist = false) private String registrantName; @ApiModelProperty(value = "处理部门") @TableField("dispose_id") private Integer disposeId; @TableField(exist = false) private String disposeName; @ApiModelProperty(value = "处理结果") @TableField("dispose_mess") private String disposeMess; @ApiModelProperty(value = "备注") @TableField("remark") private String remark; }