songhuangfeng123
2022-09-05 208b6439eb8e63b6485240a8b466ebdcfd08c57a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.gkhy.safePlatform.emergency.rpc.api.model.dto.req;
 
public class EmergencyExecuteTimeRPCReq {
 
    // 部门id
    private Long deptId;
 
    public Long getDeptId() {
        return deptId;
    }
 
    public void setDeptId(Long deptId) {
        this.deptId = deptId;
    }
 
}