24 lines
428 B
Java
24 lines
428 B
Java
package com.fuint.common.dto;
|
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* 个人资产实体类
|
|
*
|
|
* Created by FSQ
|
|
* CopyRight https://www.fuint.cn
|
|
*/
|
|
@Data
|
|
public class AssetDto {
|
|
|
|
@ApiModelProperty("次卡数量")
|
|
private Integer timer;
|
|
|
|
@ApiModelProperty("储值卡数量")
|
|
private Integer prestore;
|
|
|
|
@ApiModelProperty("优惠券数量")
|
|
private Integer coupon;
|
|
}
|