package com.stylefeng.guns.modular.system.model;
|
|
import java.util.Date;
|
import com.baomidou.mybatisplus.activerecord.Model;
|
import com.baomidou.mybatisplus.annotations.TableName;
|
import java.io.Serializable;
|
|
/**
|
* <p>
|
* 调度管理
|
* </p>
|
*
|
* @author 吕雪
|
* @since 2020-09-01
|
*/
|
@TableName("t_dispatch")
|
public class TDispatch extends Model<TDispatch> {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键ID
|
*/
|
private Integer id;
|
/**
|
* 添加时间
|
*/
|
private Date insertTime;
|
/**
|
* 调度名称
|
*/
|
private String name;
|
/**
|
* 所属分公司ID
|
*/
|
private Integer companyId;
|
/**
|
* 加盟商ID
|
*/
|
private Integer franchiseeId;
|
/**
|
* 联系电话
|
*/
|
private String phone;
|
/**
|
* 登录账号
|
*/
|
private String account;
|
/**
|
* 登录密码 加密方式:MD5 加盐:WL:x9#
|
*/
|
private String password;
|
/**
|
* 添加用户ID
|
*/
|
private Integer insertUserId;
|
/**
|
* 添加用户角色
|
*/
|
private Integer insertUserRole;
|
/**
|
* 状态 1=正常 2=冻结 3=删除
|
*/
|
private Integer state;
|
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public Date getInsertTime() {
|
return insertTime;
|
}
|
|
public void setInsertTime(Date insertTime) {
|
this.insertTime = insertTime;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public Integer getCompanyId() {
|
return companyId;
|
}
|
|
public void setCompanyId(Integer companyId) {
|
this.companyId = companyId;
|
}
|
|
public Integer getFranchiseeId() {
|
return franchiseeId;
|
}
|
|
public void setFranchiseeId(Integer franchiseeId) {
|
this.franchiseeId = franchiseeId;
|
}
|
|
public String getPhone() {
|
return phone;
|
}
|
|
public void setPhone(String phone) {
|
this.phone = phone;
|
}
|
|
public String getAccount() {
|
return account;
|
}
|
|
public void setAccount(String account) {
|
this.account = account;
|
}
|
|
public String getPassword() {
|
return password;
|
}
|
|
public void setPassword(String password) {
|
this.password = password;
|
}
|
|
public Integer getInsertUserId() {
|
return insertUserId;
|
}
|
|
public void setInsertUserId(Integer insertUserId) {
|
this.insertUserId = insertUserId;
|
}
|
|
public Integer getInsertUserRole() {
|
return insertUserRole;
|
}
|
|
public void setInsertUserRole(Integer insertUserRole) {
|
this.insertUserRole = insertUserRole;
|
}
|
|
public Integer getState() {
|
return state;
|
}
|
|
public void setState(Integer state) {
|
this.state = state;
|
}
|
|
@Override
|
protected Serializable pkVal() {
|
return this.id;
|
}
|
|
@Override
|
public String toString() {
|
return "TDispatch{" +
|
"id=" + id +
|
", insertTime=" + insertTime +
|
", name=" + name +
|
", companyId=" + companyId +
|
", franchiseeId=" + franchiseeId +
|
", phone=" + phone +
|
", account=" + account +
|
", password=" + password +
|
", insertUserId=" + insertUserId +
|
", insertUserRole=" + insertUserRole +
|
", state=" + state +
|
"}";
|
}
|
}
|