package com.stylefeng.guns.modular.system.model;
|
|
import com.baomidou.mybatisplus.activerecord.Model;
|
import com.baomidou.mybatisplus.annotations.TableId;
|
import com.baomidou.mybatisplus.annotations.TableName;
|
import com.baomidou.mybatisplus.enums.IdType;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* <p>
|
* 特殊区域价格设置
|
* </p>
|
*
|
* @author stylefeng
|
* @since 2020-06-17
|
*/
|
@TableName("t_special_area_billing")
|
public class SpecialAreaBilling extends Model<SpecialAreaBilling> {
|
|
private static final long serialVersionUID = 1L;
|
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
/**
|
* 区域名称
|
*/
|
private String areaName;
|
/**
|
* 价格系数
|
*/
|
private double priceCoefficient;
|
/**
|
* 备注
|
*/
|
private String remark;
|
/**
|
* 电子围栏坐标(多组以下划线分隔)
|
*/
|
private String coordinate;
|
/**
|
* 电子围栏gid(多组以下划线分隔)
|
*/
|
private String gid;
|
/**
|
* 状态(1=正常,2=冻结,3=删除)
|
*/
|
private Integer state;
|
/**
|
* 添加时间
|
*/
|
private Date insertTime;
|
@Override
|
protected Serializable pkVal() {
|
return this.id;
|
}
|
public String getAreaName() {
|
return areaName;
|
}
|
|
public void setAreaName(String areaName) {
|
this.areaName = areaName;
|
}
|
|
public double getPriceCoefficient() {
|
return priceCoefficient;
|
}
|
|
public void setPriceCoefficient(double priceCoefficient) {
|
this.priceCoefficient = priceCoefficient;
|
}
|
|
public String getRemark() {
|
return remark;
|
}
|
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
|
public String getCoordinate() {
|
return coordinate;
|
}
|
|
public void setCoordinate(String coordinate) {
|
this.coordinate = coordinate;
|
}
|
|
public String getGid() {
|
return gid;
|
}
|
|
public void setGid(String gid) {
|
this.gid = gid;
|
}
|
|
public Integer getState() {
|
return state;
|
}
|
|
public void setState(Integer state) {
|
this.state = state;
|
}
|
|
public Date getInsertTime() {
|
return insertTime;
|
}
|
|
public void setInsertTime(Date insertTime) {
|
this.insertTime = insertTime;
|
}
|
}
|