“djh”
2025-11-20 a14b9718755aeeb26b3035065a5e36c9dd1e1555
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
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 com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
import java.time.LocalDate;
 
@Data
@TableName("monthly_inspection_mess")
@ApiModel(value = "MonthlyInspectionMess", description = "月度检查记录副表")
public class MonthlyInspectionMess implements Serializable {
 
    @ApiModelProperty("主键")
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    @ApiModelProperty(value = "月度检查记录主表")
    @TableField("monthly_id")
    private Integer monthlyId;
 
    @ApiModelProperty(value = "时间")
    @TableField("monthly_time")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private LocalDate monthlyTime;
 
    @ApiModelProperty(value = "检查人")
    @TableField("check_user")
    private String checkUser;
 
    @ApiModelProperty(value = "防护")
    @TableField("entrench")
    private String entrench;
 
    @ApiModelProperty(value = "标识")
    @TableField("identification")
    private String identification;
 
    @ApiModelProperty(value = "摆放")
    @TableField("place")
    private String place;
 
    @ApiModelProperty(value = "清洁")
    @TableField("clean")
    private String clean;
 
    @ApiModelProperty(value = "安全")
    @TableField("safety")
    private String safety;
 
    @ApiModelProperty(value = "环境")
    @TableField("environment")
    private String environment;
 
    @ApiModelProperty(value = "一致性")
    @TableField("consistency")
    private String consistency;
 
}