|
@@ -0,0 +1,90 @@
|
|
|
+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_sch_vip
|
|
|
+ *
|
|
|
+ * @author miaxis
|
|
|
+ * @date 2025-03-04
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@TableName("free_sch_vip")
|
|
|
+@ApiModel(value = "FreeSchVip", description = "免费领取VIP的驾校对象 free_sch_vip")
|
|
|
+public class FreeSchVip extends BaseBusinessEntity{
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ /** 驾校编号 */
|
|
|
+ @TableId(value = "jxbh")
|
|
|
+ @ApiModelProperty(value = "驾校编号")
|
|
|
+ private String jxbh;
|
|
|
+
|
|
|
+ /** 驾校名称 */
|
|
|
+ @Excel(name = "驾校名称")
|
|
|
+ @TableField("name")
|
|
|
+ @ApiModelProperty(value = "驾校名称")
|
|
|
+ private String name;
|
|
|
+
|
|
|
+ /** 驾校简称 */
|
|
|
+ @Excel(name = "驾校简称")
|
|
|
+ @TableField("short_name")
|
|
|
+ @ApiModelProperty(value = "驾校简称")
|
|
|
+ private String shortName;
|
|
|
+
|
|
|
+ /** 状态 0未开通 1开通 */
|
|
|
+ @Excel(name = "状态 0未开通 1开通")
|
|
|
+ @TableField("status")
|
|
|
+ @ApiModelProperty(value = "状态 0未开通 1开通")
|
|
|
+ private Long status;
|
|
|
+
|
|
|
+ public void setJxbh(String jxbh){
|
|
|
+ this.jxbh = jxbh;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getJxbh(){
|
|
|
+ return jxbh;
|
|
|
+ }
|
|
|
+ public void setName(String name){
|
|
|
+ this.name = name;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getName(){
|
|
|
+ return name;
|
|
|
+ }
|
|
|
+ public void setShortName(String shortName){
|
|
|
+ this.shortName = shortName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getShortName(){
|
|
|
+ return shortName;
|
|
|
+ }
|
|
|
+ public void setStatus(Long status){
|
|
|
+ this.status = status;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getStatus(){
|
|
|
+ return status;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public String toString() {
|
|
|
+ return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
|
|
+ .append("jxbh", getJxbh())
|
|
|
+ .append("name", getName())
|
|
|
+ .append("shortName", getShortName())
|
|
|
+ .append("status", getStatus())
|
|
|
+ .append("createTime", getCreateTime())
|
|
|
+ .append("updateTime", getUpdateTime())
|
|
|
+ .toString();
|
|
|
+ }
|
|
|
+}
|