| | |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import nonapi.io.github.classgraph.json.Id; |
| | | |
| | |
| | | @Id |
| | | @TableId(type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | @ApiModelProperty("题库uuid") |
| | | private String uuid; |
| | | private Long institutionId;; |
| | | |
| | | @ApiModelProperty("题库名称") |
| | | private String name; |
| | | |
| | | @ApiModelProperty("机构id") |
| | | private Long institutionId; |
| | | |
| | | @ApiModelProperty("机构名称") |
| | | private String institutionName; |
| | | private int lastMonthCount; |
| | | private int addCount; |
| | | private int reduceCount; |
| | | private BigDecimal brushRate; |
| | | private BigDecimal assemblyRate; |
| | | private String url; |
| | | private String month; |
| | | |
| | | @ApiModelProperty("题库题目总数") |
| | | private Integer totalCount; |
| | | |
| | | @ApiModelProperty("单选题数量") |
| | | private Integer singleCount; |
| | | |
| | | @ApiModelProperty("多选题数量") |
| | | private Integer multiCount; |
| | | |
| | | @ApiModelProperty("判断题数量") |
| | | private Integer judgeCount; |
| | | |
| | | @ApiModelProperty("简答题数量") |
| | | private Integer easyCount; |
| | | |
| | | @ApiModelProperty("混合题数量") |
| | | private Integer mixCount; |
| | | |
| | | @ApiModelProperty("其他数量") |
| | | private Integer otherCount; |
| | | |
| | | //删除标志(0代表存在 2代表删除) |
| | | private Byte delFlag; |