wl
2022-12-13 3cf5e9483f60c94d29df1a79bc0c1ca910ca46ef
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.ycl.vo.writ;
 
import com.ycl.entity.caseHandler.Writ;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.time.LocalDateTime;
 
@Data
@ApiModel(value = "WritVO")
public class WritVO extends Writ {
 
    private String writTypeName;
 
    private String categoryName;
 
    private String eventCode;
 
    private String templateCode;
 
}