first commit

This commit is contained in:
2026-01-27 14:03:02 +08:00
commit f20694754f
805 changed files with 92805 additions and 0 deletions

View File

@ -0,0 +1,23 @@
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;
}