17 lines
226 B
Plaintext
17 lines
226 B
Plaintext
|
|
package com.sercurityControl.proteam.domain.vo;
|
||
|
|
|
||
|
|
import lombok.Data;
|
||
|
|
|
||
|
|
@Data
|
||
|
|
public class WorkDetailsVo {
|
||
|
|
|
||
|
|
private String workSite;
|
||
|
|
|
||
|
|
private String content;
|
||
|
|
|
||
|
|
private String workGx;
|
||
|
|
|
||
|
|
private String workType;
|
||
|
|
|
||
|
|
}
|