zhanghua
2023-03-13 3ce2963dec8600b6c7be58015ff6469ab62d2a6f
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;
 
}