zhangfeng
2022-10-12 80b96d6b2541ddd581bc9bdf1ecfcb566e06a478
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
package com.gkhy.safePlatform.emergency.entity;
 
public class EmergencyDrillExecuteLastTimeDO {
    // 部门id
    private Long deptId;
 
    //左后一次演练的时间
    private String lastTime;
 
    public Long getDeptId() {
        return deptId;
    }
 
    public void setDeptId(Long deptId) {
        this.deptId = deptId;
    }
 
    public String getLastTime() {
        return lastTime;
    }
 
    public void setLastTime(String lastTime) {
        this.lastTime = lastTime;
    }
}