package com.stylefeng.guns.modular.shunfeng.model;
|
|
import java.io.Serializable;
|
|
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;
|
|
/**
|
* <p>
|
* 系统设置; InnoDB free: 6144 kB
|
* </p>
|
*
|
* @author wumeng123
|
* @since 2019-06-11
|
*/
|
@TableName("app_param")
|
public class Param extends Model<Param> {
|
|
private static final long serialVersionUID = 1L;
|
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
/**
|
* 1=城乡票务支付倒计时设置(分钟) 2=实时班线支付倒计时设置(分钟) 3=全国客服电话 4=关于我们 5=常见问题 6=用户协议, 7=司机待接单自动取消时间(s) ,8=法律条款与平台规则, 9=出租车服务协议, 10=报警电话 , 11=监督电话 , 12=投诉电话,13=推单设置,14=出租车取消规则 ,15=司机改派费用
|
*/
|
private Integer type;
|
/**
|
* 内容
|
*/
|
private String context;
|
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public Integer getType() {
|
return type;
|
}
|
|
public void setType(Integer type) {
|
this.type = type;
|
}
|
|
public String getContext() {
|
return context;
|
}
|
|
public void setContext(String context) {
|
this.context = context;
|
}
|
|
@Override
|
protected Serializable pkVal() {
|
return this.id;
|
}
|
|
@Override
|
public String toString() {
|
return "Param{" +
|
"id=" + id +
|
", type=" + type +
|
", context=" + context +
|
"}";
|
}
|
}
|