138 lines
3.3 KiB
Java
138 lines
3.3 KiB
Java
|
|
package com.ruoyi.system.domain;
|
|||
|
|
|
|||
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|||
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|||
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|||
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|||
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|||
|
|
import com.ruoyi.common.annotation.Excel;
|
|||
|
|
import com.ruoyi.common.mybatis.MyGeometryTypeHandler;
|
|||
|
|
import lombok.Data;
|
|||
|
|
|
|||
|
|
import java.io.Serializable;
|
|||
|
|
import java.util.Date;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 运营区对象 et_operating_area
|
|||
|
|
*
|
|||
|
|
* @author 邱贞招
|
|||
|
|
* @date 2024-04-06
|
|||
|
|
*/
|
|||
|
|
@Data
|
|||
|
|
@TableName(value = "et_operating_area")
|
|||
|
|
public class EtOperatingArea implements Serializable
|
|||
|
|
{
|
|||
|
|
private static final long serialVersionUID = 1L;
|
|||
|
|
|
|||
|
|
/** 区域id */
|
|||
|
|
@TableId(value = "area_id", type = IdType.AUTO)
|
|||
|
|
private Long areaId;
|
|||
|
|
|
|||
|
|
/** 区域名称 */
|
|||
|
|
@Excel(name = "区域名称")
|
|||
|
|
private String areaName;
|
|||
|
|
|
|||
|
|
/** 边界 */
|
|||
|
|
@Excel(name = "边界")
|
|||
|
|
@TableField(typeHandler = MyGeometryTypeHandler.class)
|
|||
|
|
private String boundary;
|
|||
|
|
|
|||
|
|
/** 边界json */
|
|||
|
|
@Excel(name = "边界json")
|
|||
|
|
// @TableField(exist = false)
|
|||
|
|
private String boundaryStr;
|
|||
|
|
|
|||
|
|
/** 经度 */
|
|||
|
|
@Excel(name = "经度")
|
|||
|
|
private String longitude;
|
|||
|
|
|
|||
|
|
/** 纬度 */
|
|||
|
|
@Excel(name = "纬度")
|
|||
|
|
private String latitude;
|
|||
|
|
|
|||
|
|
/** 创建者 */
|
|||
|
|
private String createBy;
|
|||
|
|
|
|||
|
|
/** 创建时间 */
|
|||
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|||
|
|
private Date createTime;
|
|||
|
|
|
|||
|
|
/** 车辆数量 */
|
|||
|
|
@TableField(exist = false)
|
|||
|
|
private Integer deviceNum;
|
|||
|
|
|
|||
|
|
/** 收费方式 */
|
|||
|
|
@TableField(exist = false)
|
|||
|
|
private Long[] ruleIds;
|
|||
|
|
|
|||
|
|
/** 收费方式描述 */
|
|||
|
|
@TableField(exist = false)
|
|||
|
|
private String ruleStr;
|
|||
|
|
|
|||
|
|
/** 联系人 */
|
|||
|
|
@Excel(name = "contact")
|
|||
|
|
private String contact;
|
|||
|
|
|
|||
|
|
/** 联系电话 */
|
|||
|
|
@Excel(name = "联系电话")
|
|||
|
|
private String phone;
|
|||
|
|
|
|||
|
|
/** 运营区状态:1-运营中;2-停运 */
|
|||
|
|
@Excel(name = "运营区状态:1-运营中;2-停运")
|
|||
|
|
private String status;
|
|||
|
|
|
|||
|
|
/** 运营时间:1-全天;2-自定义 */
|
|||
|
|
@Excel(name = "运营时间:1-全天;2-自定义")
|
|||
|
|
private String areaTime;
|
|||
|
|
|
|||
|
|
/** 客服电话 */
|
|||
|
|
@Excel(name = "客服电话")
|
|||
|
|
private String servicePhone;
|
|||
|
|
|
|||
|
|
/** 运营个性化标语 */
|
|||
|
|
@Excel(name = "运营个性化标语")
|
|||
|
|
private String slogan;
|
|||
|
|
|
|||
|
|
@Excel(name = "省")
|
|||
|
|
private String province;
|
|||
|
|
|
|||
|
|
@Excel(name = "市")
|
|||
|
|
private String city;
|
|||
|
|
|
|||
|
|
@Excel(name = "区")
|
|||
|
|
private String county;
|
|||
|
|
|
|||
|
|
@Excel(name = "运营区域外断电")
|
|||
|
|
private String areaOutOutage;
|
|||
|
|
|
|||
|
|
@Excel(name = "停车点外还车调度")
|
|||
|
|
private String parkingOutDispatch;
|
|||
|
|
|
|||
|
|
@Excel(name = "电子围栏外还车调度")
|
|||
|
|
private String areaOutDispatch;
|
|||
|
|
|
|||
|
|
@Excel(name = "禁行区内断电")
|
|||
|
|
private String noRidingOutage;
|
|||
|
|
|
|||
|
|
@Excel(name = "实名认证:0-关闭;1-开启")
|
|||
|
|
private String authentication;
|
|||
|
|
|
|||
|
|
@Excel(name = "短信通知服务")
|
|||
|
|
private String msgSwitch;
|
|||
|
|
|
|||
|
|
@Excel(name = "低于电量(%)不得骑行")
|
|||
|
|
private String undercharge;
|
|||
|
|
|
|||
|
|
@Excel(name = "还车误差")
|
|||
|
|
private Integer error;
|
|||
|
|
|
|||
|
|
@Excel(name = "安全协议")
|
|||
|
|
private String agreement;
|
|||
|
|
|
|||
|
|
@Excel(name = "押金")
|
|||
|
|
private String deposit;
|
|||
|
|
|
|||
|
|
@Excel(name = "超出电子围栏多少时长断电(s)")
|
|||
|
|
private Integer outage;
|
|||
|
|
}
|