admin
2025-02-25 30d8e227e8d823b6c38c3b9c90ac2df03b63befe
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
64
65
66
67
68
69
70
71
72
package com.yeshi.fanli.entity.system;
 
import java.util.Date;
import java.util.List;
 
import org.yeshi.utils.generater.mybatis.Column;
import org.yeshi.utils.generater.mybatis.Table;
 
import com.google.gson.annotations.Expose;
 
@Table("yeshi_ec_customer_name")
public class CustomerName {
 
    @Column(name = "id")
    @Expose
    private Long id;
 
    @Column(name = "name")
    private String name;
 
    @Column(name = "createTime")
    private Date createTime;
 
    @Column(name = "type")
    private Integer type; // 1:帮助中心 2:关于我们 3:返利详情用户协议 4:联系客服
 
 
    private List<CustomerContent> customerContentList;//一级标题下面的二级标题内容
    
    
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public List<CustomerContent> getCustomerContentList() {
        return customerContentList;
    }
 
    public void setCustomerContentList(List<CustomerContent> customerContentList) {
        this.customerContentList = customerContentList;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public Integer getType() {
        return type;
    }
 
    public void setType(Integer type) {
        this.type = type;
    }
 
}