1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.gkhy.safePlatform.specialWork.model.dto.req;
|
| import java.io.Serializable;
|
| public class WorkStartReqDTO implements Serializable {
|
| private static final long serialVersionUID = 6044333584627268333L;
|
| private Long workId;
|
| public Long getWorkId() {
| return workId;
| }
|
| public void setWorkId(Long workId) {
| this.workId = workId;
| }
| }
|
|