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.aftersale.entity.vo;
|
| import cn.lili.modules.order.aftersale.entity.dos.AfterSale;
| import lombok.Data;
|
| /**
| * 售后VO
| *
| * @author Chopper
| * @since 2021/3/12 10:32 上午
| */
| @Data
| public class AfterSaleVO extends AfterSale {
| /**
| * 初始化自身状态
| */
| public AfterSaleAllowOperation getAfterSaleAllowOperationVO() {
|
| //设置订单的可操作状态
| return new AfterSaleAllowOperation(this);
| }
| }
|
|