|
@@ -0,0 +1,118 @@
|
|
|
+package com.miaxis.free.domain;
|
|
|
+
|
|
|
+import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
+import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
+import com.miaxis.common.annotation.Excel;
|
|
|
+import com.miaxis.common.core.domain.BaseEntity;
|
|
|
+import io.swagger.annotations.ApiModel;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
+import com.miaxis.common.core.domain.BaseBusinessEntity;
|
|
|
+import lombok.Data;
|
|
|
+/**
|
|
|
+ * 免费领取VIP的记录对象 free_user_log
|
|
|
+ *
|
|
|
+ * @author miaxis
|
|
|
+ * @date 2025-03-06
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@TableName("free_user_log")
|
|
|
+@ApiModel(value = "FreeUserLog", description = "免费领取VIP的记录对象 free_user_log")
|
|
|
+public class FreeUserLog extends BaseBusinessEntity{
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ /** 主键 */
|
|
|
+ @TableId(value = "id")
|
|
|
+ @ApiModelProperty(value = "主键")
|
|
|
+ private Long id;
|
|
|
+
|
|
|
+ /** 用户ID */
|
|
|
+ @Excel(name = "用户ID")
|
|
|
+ @TableField("user_id")
|
|
|
+ @ApiModelProperty(value = "用户ID")
|
|
|
+ private Long userId;
|
|
|
+
|
|
|
+ /** 登录身份证号 */
|
|
|
+ @Excel(name = "登录身份证号")
|
|
|
+ @TableField("logincode")
|
|
|
+ @ApiModelProperty(value = "登录身份证号")
|
|
|
+ private String logincode;
|
|
|
+
|
|
|
+ /** 用户姓名 */
|
|
|
+ @Excel(name = "用户姓名")
|
|
|
+ @TableField("user_name")
|
|
|
+ @ApiModelProperty(value = "用户姓名")
|
|
|
+ private String userName;
|
|
|
+
|
|
|
+ /** 驾校编号 */
|
|
|
+ @Excel(name = "驾校编号")
|
|
|
+ @TableField("jxbh")
|
|
|
+ @ApiModelProperty(value = "驾校编号")
|
|
|
+ private String jxbh;
|
|
|
+
|
|
|
+ /** 驾校名称 */
|
|
|
+ @Excel(name = "驾校名称")
|
|
|
+ @TableField("school_name")
|
|
|
+ @ApiModelProperty(value = "驾校名称")
|
|
|
+ private String schoolName;
|
|
|
+
|
|
|
+ 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 setLogincode(String logincode){
|
|
|
+ this.logincode = logincode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getLogincode(){
|
|
|
+ return logincode;
|
|
|
+ }
|
|
|
+ public void setUserName(String userName){
|
|
|
+ this.userName = userName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getUserName(){
|
|
|
+ return userName;
|
|
|
+ }
|
|
|
+ public void setJxbh(String jxbh){
|
|
|
+ this.jxbh = jxbh;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getJxbh(){
|
|
|
+ return jxbh;
|
|
|
+ }
|
|
|
+ public void setSchoolName(String schoolName){
|
|
|
+ this.schoolName = schoolName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSchoolName(){
|
|
|
+ return schoolName;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public String toString() {
|
|
|
+ return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
|
|
+ .append("id", getId())
|
|
|
+ .append("userId", getUserId())
|
|
|
+ .append("logincode", getLogincode())
|
|
|
+ .append("userName", getUserName())
|
|
|
+ .append("jxbh", getJxbh())
|
|
|
+ .append("schoolName", getSchoolName())
|
|
|
+ .append("createTime", getCreateTime())
|
|
|
+ .append("updateTime", getUpdateTime())
|
|
|
+ .toString();
|
|
|
+ }
|
|
|
+}
|