无关风月
2024-12-31 0c51a577db337520452022d9d6a22b720ef858d4
xinquan-modules/xinquan-system/src/main/java/com/xinquan/system/domain/CommonQuestion.java
@@ -27,12 +27,15 @@
    private static final long serialVersionUID = 1L;
    @ApiModelProperty(value = "普通问题id")
    @TableId(value = "id", type = IdType.AUTO)
    @TableId(value = "id", type = IdType.ASSIGN_ID)
    private Long id;
    @ApiModelProperty(value = "问题")
    @TableField("question_name")
    private String questionName;
    @ApiModelProperty(value = "uid")
    @TableField(exist = false)
    private String uid;
    @ApiModelProperty(value = "排序权重")
    @TableField("sort_num")
@@ -50,5 +53,9 @@
    @TableField("content")
    private String content;
    @ApiModelProperty(value = "类型1问题 2客服微信")
    @TableField("type")
    private Integer type;
}