“djh”
3 天以前 1c3005a6b1ebc5d355faf1d01f6bfb647b80700c
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
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.sql.Time;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.LocalTime;
 
@Data
@TableName("internal_audit_carry_dept")
@ApiModel(value = "InternalAuditCarryDept对象", description = "内审计划实施对应部门数据")
public class InternalAuditCarryDept implements Serializable {
 
    @ApiModelProperty("主键")
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    @ApiModelProperty(value = "内审实施id",required = true)
    @TableField("carry_id")
    private Integer carryId;
 
    @ApiModelProperty(value = "部门id")
    @TableField("dept_id")
    private Integer deptId;
 
    @TableField(exist = false)
    private String deptName;
 
    @ApiModelProperty(value = "日期")
    @TableField("date")
    private LocalDate date;
 
    @ApiModelProperty(value = "开始时间")
    @TableField("start_time")
    @JsonFormat(pattern = "HH:mm")
    private LocalTime startTime;
 
    @ApiModelProperty(value = "结束时间")
    @TableField("end_time")
    @JsonFormat(pattern = "HH:mm")
    private LocalTime endTime;
 
    @ApiModelProperty("审核员id")
    @TableField("check_id")
    private Integer checkId;
 
    @TableField(exist = false)
    private String  checkName;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
}