| | |
| | | package com.ks.vip.pojo.DO; |
| | | |
| | | import org.springframework.data.annotation.Id; |
| | | import org.springframework.data.mongodb.core.index.Indexed; |
| | | import org.springframework.data.mongodb.core.mapping.Document; |
| | | import org.yeshi.utils.generater.mybatis.Column; |
| | | import org.yeshi.utils.generater.mybatis.Table; |
| | |
| | | |
| | | @Id |
| | | private String id; |
| | | @Indexed |
| | | private String uid; |
| | | private BigDecimal money; |
| | | @Indexed |
| | | private Integer type; |
| | | /** |
| | | * 分类 |
| | | */ |
| | | @Indexed |
| | | private String category; |
| | | private String title; |
| | | private String identifyCode; |
| | | @Indexed |
| | | private Date createTime; |
| | | private Date updateTime; |
| | | |