heheng
2025-11-19 735d0737c850cb4385d99fb18f485a5e6c7efbb4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
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;
 
 
 
 
}