Jinquan_Ou
2023-04-23 3cfa0bda6574d0c39db120c457e98a168aa193e8
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
73
74
75
76
77
78
79
80
package com.ruoyi.domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.ruoyi.common.annotation.Excel;
import lombok.Data;
import lombok.ToString;
 
import java.io.Serializable;
 
/**
 * <p>
 * 
 * </p>
 *
 * @author ojq
 * @since 2023-03-12
 */
@TableName("zf_doctor")
@Data
@ToString
public class ZfDoctor implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    /**
     * 病的类型
     */
    @Excel(name = "病的类型")
    private String type;
 
    /**
     * 症状
     */
    @Excel(name = "症状")
    private String symptom;
 
    /**
     * 持续时间
     */
    @Excel(name = "持续时间")
    private String duration;
 
    /**
     * 中医
     */
    @Excel(name = "中医")
    private String cmedical;
 
    /**
     * 西医
     */
    @Excel(name = "西医")
    private String wmedical;
 
    /**
     * 功效
     */
    @Excel(name = "功效")
    private String effect;
 
    /**
     * 适用人
     */
    @Excel(name = "适用人")
    private String suitable;
 
    /**
     * 备注
     */
    @Excel(name = "备注")
    private String remark;
 
    private String url;
 
}