| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210 |
- package cn.com.goldenwater.dcproj.dto;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * entity:BisInspTravelPlanPoint
- *
- * @author lhc
- * @date 2019-9-17
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class BisInspTravelPlanPointDto extends BaseBean implements Serializable {
- // ID
- @ApiModelProperty(value = "ID", name = "id")
- private String id;
- // 路书日行程ID
- @ApiModelProperty(value = "路书日行程ID", name = "planDayId")
- private String planDayId;
- // 经过点名称
- @ApiModelProperty(value = "经过点名称", name = "name")
- private String name;
- // 行政区代码
- @ApiModelProperty(value = "行政区代码", name = "addvcd")
- private String addvcd;
- // 行政区划名称
- @ApiModelProperty(value = "行政区划名称", name = "addvnm")
- private String addvnm;
- // 行政区级别
- @ApiModelProperty(value = "行政区级别", name = "lev")
- private String lev;
- // 经过点经度
- @ApiModelProperty(value = "经过点经度", name = "lgtd")
- private Double lgtd;
- // 经过点纬度
- @ApiModelProperty(value = "经过点纬度", name = "lttd")
- private Double lttd;
- // 图标
- @ApiModelProperty(value = "图标", name = "icons")
- private String icons;
- // 顺序
- @ApiModelProperty(value = "顺序", name = "ordr")
- private Long ordr;
- private Date intm;
- private Date uptm;
- // 数据状态(0:正常;9:删除)
- @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
- private String dataStat;
- // 距离(米)
- @ApiModelProperty(value = "距离(米)", name = "distance")
- private Long distance;
- // 耗时(分钟)
- @ApiModelProperty(value = "耗时(分钟)", name = "consuming")
- private Long consuming;
- // 督查对象类型
- @ApiModelProperty(value = "督查对象类型", name = "ptype")
- private String ptype;
- // 登记表ID
- @ApiModelProperty(value = "登记表ID", name = "regId")
- private String regId;
- public BisInspTravelPlanPointDto() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getPlanDayId() {
- return planDayId;
- }
- public void setPlanDayId(String planDayId) {
- this.planDayId = planDayId;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getAddvcd() {
- return addvcd;
- }
- public void setAddvcd(String addvcd) {
- this.addvcd = addvcd;
- }
- public String getAddvnm() {
- return addvnm;
- }
- public void setAddvnm(String addvnm) {
- this.addvnm = addvnm;
- }
- public String getLev() {
- return lev;
- }
- public void setLev(String lev) {
- this.lev = lev;
- }
- public Double getLgtd() {
- return lgtd;
- }
- public void setLgtd(Double lgtd) {
- this.lgtd = lgtd;
- }
- public Double getLttd() {
- return lttd;
- }
- public void setLttd(Double lttd) {
- this.lttd = lttd;
- }
- public String getIcons() {
- return icons;
- }
- public void setIcons(String icons) {
- this.icons = icons;
- }
- public Long getOrdr() {
- return ordr;
- }
- public void setOrdr(Long ordr) {
- this.ordr = ordr;
- }
- public Date getIntm() {
- return intm;
- }
- public void setIntm(Date intm) {
- this.intm = intm;
- }
- public Date getUptm() {
- return uptm;
- }
- public void setUptm(Date uptm) {
- this.uptm = uptm;
- }
- public String getDataStat() {
- return dataStat;
- }
- public void setDataStat(String dataStat) {
- this.dataStat = dataStat;
- }
- public Long getDistance() {
- return distance;
- }
- public void setDistance(Long distance) {
- this.distance = distance;
- }
- public Long getConsuming() {
- return consuming;
- }
- public void setConsuming(Long consuming) {
- this.consuming = consuming;
- }
- public String getPtype() {
- return ptype;
- }
- public void setPtype(String ptype) {
- this.ptype = ptype;
- }
- public String getRegId() {
- return regId;
- }
- public void setRegId(String regId) {
- this.regId = regId;
- }
- @Override
- public String toString() {
- return "BisInspTravelPlanPoint [" + "id=" + id + ", planDayId=" + planDayId + ", name=" + name + ", addvcd=" + addvcd + ", addvnm=" + addvnm + ", lev=" + lev + ", lgtd=" + lgtd + ", lttd=" + lttd + ", icons=" + icons + ", ordr=" + ordr + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + "]";
- }
- }
|