礼包后台fixed

This commit is contained in:
2025-07-04 18:08:40 +08:00
parent 379e9cef31
commit b415a7d50c
6 changed files with 181 additions and 6 deletions

View File

@@ -0,0 +1,35 @@
package com.accompany.admin.vo.packcenter;
import com.accompany.core.annotation.I18n;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.util.Date;
@Data
public class UserUsePackRecordAdminVo {
@ApiModelProperty(value = "ID")
private Long id;
private Long uid;
private Integer partitionId;
@ApiModelProperty("分区")
private String partitionDesc;
@ApiModelProperty(value = "平台ID")
private Long erbanNo;
private String nick;
private Long targetUid;
@ApiModelProperty(value = "赠送平台ID")
private Long targeErbanNo;
private String targeNick;
@ApiModelProperty(value = "礼包名称")
@I18n(className = "PackInfo")
private String packName;
@ApiModelProperty(value = "赠送礼包ID")
private Integer packId;
@ApiModelProperty(value = "数量")
private Integer packNum;
@ApiModelProperty(value = "使用时间")
private Date createTime;
@ApiModelProperty(value = "使用类型.1-自己用,2-赠送")
private Byte useType;
}