| | |
| | | */ |
| | | package org.springblade.modules.tagging.entity; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import com.alibaba.excel.annotation.write.style.ColumnWidth; |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import java.io.Serializable; |
| | | import lombok.Data; |
| | |
| | | public class Tagging implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | private Integer id; |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Long id; |
| | | private String name; |
| | | private String jd; |
| | | private String wd; |
| | | @ColumnWidth(16) |
| | | @ExcelProperty("二维码图片") |
| | | private String qrcode; |
| | | |
| | | |
| | | } |