1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package cn.lili.modules.order.order.entity.vo;
|
| import cn.lili.modules.order.order.entity.dos.OrderComplaintCommunication;
| import lombok.Data;
| import lombok.NoArgsConstructor;
|
| /**
| * 投诉通信VO
| *
| * @author paulG
| * @since 2020/12/5
| **/
| @Data
| @NoArgsConstructor
| public class OrderComplaintCommunicationVO extends OrderComplaintCommunication {
|
| private static final long serialVersionUID = -8460949951683122695L;
|
| public OrderComplaintCommunicationVO(String complainId, String content, String owner, String ownerName, String ownerId) {
| super(complainId, content, owner, ownerName, ownerId);
| }
| }
|
|