|
|
@@ -33,6 +33,34 @@ public class ChatgptCarSessionView {
|
|
|
@DbField("cs.carID")
|
|
|
private String carID;
|
|
|
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 状态 1有效 1无效
|
|
|
+ */
|
|
|
+ @DbField("cs.status")
|
|
|
+ private Integer status;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 是否为plus会员
|
|
|
+ */
|
|
|
+ @DbField("isPlus")
|
|
|
+ private Integer isPlus;
|
|
|
+
|
|
|
+ @DbField("isCar")
|
|
|
+ private Boolean isCar;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 车名称
|
|
|
+ */
|
|
|
+ @DbField("cs.carName")
|
|
|
+ private String carName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 备注
|
|
|
+ */
|
|
|
+ @DbField("cs.remark")
|
|
|
+ private String remark;
|
|
|
+
|
|
|
@DbField("cs.created_time")
|
|
|
private Date createdTime;
|
|
|
}
|