|
@@ -41,36 +41,16 @@ public class QuestionCollection extends BaseBusinessEntity{
|
|
|
@ApiModelProperty(value = "题目ID")
|
|
|
private Long questionId;
|
|
|
|
|
|
- public void setId(Long id){
|
|
|
- this.id = id;
|
|
|
- }
|
|
|
|
|
|
- public Long getId(){
|
|
|
- return id;
|
|
|
- }
|
|
|
- public void setUserId(Long userId){
|
|
|
- this.userId = userId;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getUserId(){
|
|
|
- return userId;
|
|
|
- }
|
|
|
- public void setQuestionId(Long questionId){
|
|
|
- this.questionId = questionId;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getQuestionId(){
|
|
|
- return questionId;
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public String toString() {
|
|
|
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
|
|
- .append("id", getId())
|
|
|
- .append("userId", getUserId())
|
|
|
- .append("questionId", getQuestionId())
|
|
|
- .append("createTime", getCreateTime())
|
|
|
- .append("updateTime", getUpdateTime())
|
|
|
- .toString();
|
|
|
- }
|
|
|
+ /** 科目 */
|
|
|
+ @Excel(name = "科目")
|
|
|
+ @TableField("km")
|
|
|
+ @ApiModelProperty(value = "科目")
|
|
|
+ private Long km;
|
|
|
+
|
|
|
+ /** 车型 */
|
|
|
+ @Excel(name = "车型")
|
|
|
+ @TableField("car_type")
|
|
|
+ @ApiModelProperty(value = "车型")
|
|
|
+ private Long carType;
|
|
|
}
|