|
@@ -53,6 +53,67 @@ public class GubiTypeSecond extends SuperDO {
|
|
|
@TableField("second_name")
|
|
|
private String secondName;
|
|
|
|
|
|
+ /** 系列 */
|
|
|
+ @Excel(name = "系列")
|
|
|
+ @TableField("series")
|
|
|
+ private String series;
|
|
|
+
|
|
|
+ /** 品名 */
|
|
|
+ @Excel(name = "品名")
|
|
|
+ @TableField("product")
|
|
|
+ private String product;
|
|
|
+
|
|
|
+ /** 官网编号 */
|
|
|
+ @Excel(name = "官网编号")
|
|
|
+ @TableField("number")
|
|
|
+ private String number;
|
|
|
+
|
|
|
+ /** 年份 */
|
|
|
+ @Excel(name = "年份")
|
|
|
+ @TableField("year")
|
|
|
+ private String year;
|
|
|
+
|
|
|
+ /** 面值 */
|
|
|
+ @Excel(name = "面值")
|
|
|
+ @TableField("face")
|
|
|
+ private String face;
|
|
|
+
|
|
|
+ /** 版别 */
|
|
|
+ @Excel(name = "版别")
|
|
|
+ @TableField("edition")
|
|
|
+ private String edition;
|
|
|
+
|
|
|
+ /** 地区 */
|
|
|
+ @Excel(name = "地区")
|
|
|
+ @TableField("region")
|
|
|
+ private String region;
|
|
|
+
|
|
|
+ /** 分值等级 */
|
|
|
+ @Excel(name = "分值等级")
|
|
|
+ @TableField("grade")
|
|
|
+ private String grade;
|
|
|
+
|
|
|
+ /** 同分数量 */
|
|
|
+ @Excel(name = "同分数量")
|
|
|
+ @TableField("tong_fen")
|
|
|
+ private String tongFen;
|
|
|
+
|
|
|
+ /** 高分数量 */
|
|
|
+ @Excel(name = "高分数量")
|
|
|
+ @TableField("high_scores")
|
|
|
+ private String highScores;
|
|
|
+
|
|
|
+ /** 收集时间 */
|
|
|
+ @Excel(name = "收集时间", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
+ @TableField("collection")
|
|
|
+ private Date collection;
|
|
|
+
|
|
|
+ /** 详细介绍 */
|
|
|
+ @Excel(name = "详细介绍")
|
|
|
+ @TableField("introduction")
|
|
|
+ private String introduction;
|
|
|
+
|
|
|
+
|
|
|
/**
|
|
|
* 排序
|
|
|
*/
|