package com.stylefeng.guns.modular.system.model;
|
|
import com.baomidou.mybatisplus.enums.IdType;
|
import java.util.Date;
|
import com.baomidou.mybatisplus.annotations.TableId;
|
import com.baomidou.mybatisplus.activerecord.Model;
|
import com.baomidou.mybatisplus.annotations.TableName;
|
import java.io.Serializable;
|
|
/**
|
* <p>
|
* 代检车说明内容表
|
* </p>
|
*
|
* @author mitao
|
* @since 2025-07-27
|
*/
|
@TableName("t_check_car_explain")
|
public class TCheckCarExplain extends Model<TCheckCarExplain> {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
/**
|
* 分公司id,平台为-1
|
*/
|
private Integer branchOfficeId;
|
/**
|
* 车检流程说明
|
*/
|
private String processContent;
|
/**
|
* 车检须知
|
*/
|
private String noticeContent;
|
/**
|
* 添加时间
|
*/
|
private Date createTime;
|
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public Integer getBranchOfficeId() {
|
return branchOfficeId;
|
}
|
|
public void setBranchOfficeId(Integer branchOfficeId) {
|
this.branchOfficeId = branchOfficeId;
|
}
|
|
public String getProcessContent() {
|
return processContent;
|
}
|
|
public void setProcessContent(String processContent) {
|
this.processContent = processContent;
|
}
|
|
public String getNoticeContent() {
|
return noticeContent;
|
}
|
|
public void setNoticeContent(String noticeContent) {
|
this.noticeContent = noticeContent;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
@Override
|
protected Serializable pkVal() {
|
return this.id;
|
}
|
|
@Override
|
public String toString() {
|
return "TCheckCarExplain{" +
|
"id=" + id +
|
", branchOfficeId=" + branchOfficeId +
|
", processContent=" + processContent +
|
", noticeContent=" + noticeContent +
|
", createTime=" + createTime +
|
"}";
|
}
|
}
|