package com.stylefeng.guns.modular.system.model;
|
|
import com.baomidou.mybatisplus.enums.IdType;
|
import com.baomidou.mybatisplus.annotations.TableId;
|
import com.baomidou.mybatisplus.activerecord.Model;
|
import com.baomidou.mybatisplus.annotations.TableName;
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* <p>
|
* 车检服务商
|
* </p>
|
*
|
* @author mitao
|
* @since 2025-08-02
|
*/
|
@TableName("t_check_facilitator")
|
public class TCheckFacilitator extends Model<TCheckFacilitator> {
|
|
private static final long serialVersionUID = 1L;
|
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
/**
|
* 名称
|
*/
|
private String name;
|
/**
|
* 联系电话
|
*/
|
private String phone;
|
/**
|
* 车检地址
|
*/
|
private String address;
|
/**
|
* 分公司id
|
*/
|
private Integer companyId;
|
/**
|
* 创建人
|
*/
|
private String createBy;
|
/**
|
* 创建时间
|
*/
|
private Date createTime;
|
/**
|
* 更新人
|
*/
|
private String updateBy;
|
/**
|
* 更新时间
|
*/
|
private Date updateTime;
|
|
@Override
|
public String toString() {
|
return "TCheckFacilitator{" +
|
"id=" + id +
|
", name='" + name + '\'' +
|
", phone='" + phone + '\'' +
|
", address='" + address + '\'' +
|
", companyId=" + companyId +
|
", createBy='" + createBy + '\'' +
|
", createTime=" + createTime +
|
", updateBy='" + updateBy + '\'' +
|
", updateTime=" + updateTime +
|
'}';
|
}
|
|
public String getCreateBy() {
|
return createBy;
|
}
|
|
public void setCreateBy(String createBy) {
|
this.createBy = createBy;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getUpdateBy() {
|
return updateBy;
|
}
|
|
public void setUpdateBy(String updateBy) {
|
this.updateBy = updateBy;
|
}
|
|
public Date getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(Date updateTime) {
|
this.updateTime = updateTime;
|
}
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getPhone() {
|
return phone;
|
}
|
|
public void setPhone(String phone) {
|
this.phone = phone;
|
}
|
|
public String getAddress() {
|
return address;
|
}
|
|
public void setAddress(String address) {
|
this.address = address;
|
}
|
|
public Integer getCompanyId() {
|
return companyId;
|
}
|
|
public void setCompanyId(Integer companyId) {
|
this.companyId = companyId;
|
}
|
|
@Override
|
protected Serializable pkVal() {
|
return this.id;
|
}
|
|
}
|