| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- package com.izouma.nineth.domain;
- import lombok.*;
- import javax.persistence.Entity;
- import javax.persistence.Transient;
- /**
- * 活动收集
- *
- * @author ZouYuHong
- */
- @Getter
- @Setter
- @AllArgsConstructor
- @NoArgsConstructor
- @Builder
- @Entity
- public class ActivityCollectionInfo extends BaseEntity {
- /**
- *藏品id
- */
- private Long collectionId;
- /**
- * 藏品名称
- */
- private String collectionName;
- /**
- * 数量
- */
- private Integer num;
- /**
- * 用户持有量
- */
- @Transient
- private Integer userHoldNum;
- /**
- * 图片地址
- */
- @Transient
- private String imgUrl;
- }
|