无关风月
2024-12-31 bf765893039bc7968b8160a70bda778526dca98c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.jilongda.manage.vo;
 
import com.jilongda.manage.model.TAppUser;
import com.jilongda.manage.model.TCouponReceive;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
import java.time.LocalDateTime;
 
@Data
@ApiModel(value = "用户VO")
public class TAppUserCouponVO extends TCouponReceive {
 
    @ApiModelProperty(value = "优惠券名称")
    private String couponName;
    @ApiModelProperty(value = "门店名称")
    private String storeName;
 
 
 
}