123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195 |
- package com.project.zcustom.domain.addional;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableName;
- import com.fasterxml.jackson.annotation.JsonInclude;
- import com.project.common.annotation.Excel;
- import com.project.common.core.domain.CustomBaseEntity;
- import lombok.Data;
- import java.math.BigDecimal;
- @Data
- @TableName("large_plat_public_car")
- @JsonInclude(JsonInclude.Include.NON_NULL)
- public class LargeCar extends CustomBaseEntity {
- private Long id;
- /**
- * 所属单位
- */
- @Excel(name = "所属单位")
- private String appEncode;
- /**
- * 公务车实有总数
- */
- @Excel(name = "公务车实有总数")
- private Long totalCarNum;
- /**
- * 商务车数量
- */
- @Excel(name = "商务车数量")
- private Long carNumOne;
- /**
- * 越野车数量
- */
- @Excel(name = "越野车数量")
- private Long carNumTwo;
- /**
- * 小轿车数量
- */
- @Excel(name = "小轿车数量")
- private Long carNumThree;
- /**
- * 小型客车数量
- */
- @Excel(name = "小型客车数量")
- private Long carNumFour;
- /**
- * 大型客车数量
- */
- @Excel(name = "大型客车数量")
- private Long carNumFive;
- /**
- * 企业用车数量
- */
- @Excel(name = "企业用车数量")
- private Long enterpriseCarNum;
- /**
- * 企业负责人用车数量
- */
- @Excel(name = "企业负责人用车数量")
- private Long headCarNum;
- /**
- * 燃油车数量
- */
- @Excel(name = "燃油车数量")
- private Long oilCarNum;
- /**
- * 新能源车数量
- */
- @Excel(name = "新能源车数量")
- private Long newPowerCarNum;
- /**
- * 公务车缺编数
- */
- private Long lackCarNum;
- /**
- * 公务车编制数
- */
- @Excel(name = "公务车编制数")
- private Long establishmentsCarNum;
- /**
- * 公务车年度增加数
- */
- @Excel(name = "公务车年度增加数")
- private Long yearAddNum;
- /**
- * 公务车年度减少数
- */
- @Excel(name = "公务车年度减少数")
- private Long yearReduceNum;
- /**
- * 公务车终端数
- */
- private Long terminalTotal;
- /**
- * 公务车终端安装数
- */
- private Long terminalInstall;
- /**
- * 公务车终端在线数
- */
- private Long terminalOnline;
- /**
- * 处置未归档数量
- */
- @Excel(name = "处置未归档数量")
- private Long notArchivedNum;
- /**
- * 未带工单数
- */
- @Excel(name = "未带工单数")
- private Long noPidNum;
- /**
- * 超速预警数
- */
- @Excel(name = "超速预警数")
- private Long overSpeedNum;
- /**
- * 节假日预警数
- */
- @Excel(name = "节假日预警数")
- private Long holidayNum;
- /**
- * 派车单总数
- */
- @Excel(name = "派车单总数")
- private String pcdNum;
- /**
- * 均车派车单数
- */
- @Excel(name = "均车派车单数")
- private String avgPcdNum;
- /**
- * 公务车行驶总里程
- */
- @Excel(name = "公务车行驶总里程")
- private String mileCount;
- /**
- * 均车里程
- */
- @Excel(name = "均车里程")
- private String avgMile;
- }
|