yxh
6 天以前 dc4df9a530016c4fd24f9aebc6ccf1b95310ff1f
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
81
package com.smartor.domain;
 
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * 新生儿病史对象 medical_history_bady
 *
 * @author lihu
 * @date 2025-06-26
 */
@Data
@ApiModel("新生儿病史")
public class MedicalHistoryBady extends BaseEntity
        {
private static final long serialVersionUID = 1L;
 
    /** $column.columnComment */
    @ApiModelProperty("$column.columnComment")
        //数据库自增改成@TableId(type = IdType.AUTO)
    private Long id;
 
    /** 母生育史 */
    @ApiModelProperty("母生育史")
            @Excel(name = "母生育史")
    private String procreate;
 
    /** 母妊娠期疾病史 */
    @ApiModelProperty("母妊娠期疾病史")
            @Excel(name = "母妊娠期疾病史")
    private String gestationIllnesses;
 
    /** 家族病史 */
    @ApiModelProperty("家族病史")
            @Excel(name = "家族病史")
    private String familyHistory;
 
    /** 手术史 */
    @ApiModelProperty("手术史")
            @Excel(name = "手术史")
    private String surgicalHistory;
 
    /** 出生胎龄 */
    @ApiModelProperty("出生胎龄")
            @Excel(name = "出生胎龄")
    private String birthAge;
 
    /** 出生体重 */
    @ApiModelProperty("出生体重")
            @Excel(name = "出生体重")
    private String birthWeight;
 
    /** 出院时纠正胎龄 */
    @ApiModelProperty("出院时纠正胎龄")
            @Excel(name = "出院时纠正胎龄")
    private String outCorrectAge;
 
    /** 出院时体重 */
    @ApiModelProperty("出院时体重")
            @Excel(name = "出院时体重")
    private String outWeight;
 
    /** 过敏史 */
    @ApiModelProperty("过敏史")
            @Excel(name = "过敏史")
    private String allergy;
 
    /** 喂养情况 */
    @ApiModelProperty("喂养情况")
            @Excel(name = "喂养情况")
    private String feed;
 
    /** 患者ID */
    @ApiModelProperty("患者ID")
            @Excel(name = "患者ID")
    private Long pid;
 
        }