| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiModelProperty;
- import io.swagger.annotations.ApiParam;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * BisInspTravelPlanPolylineParam
- *
- * @author lhc
- * @date 2019-9-17
- */
- public class BisInspTravelPlanPolylineParam extends PageParam implements Serializable {
- // ID
- @ApiParam(name = "ID")
- @ApiModelProperty(value = "ID", name = "id")
- private String id;
- // 路书日行程ID
- @ApiParam(name = "路书日行程ID")
- @ApiModelProperty(value = "路书日行程ID", name = "planDayId")
- private String planDayId;
- // 导航语音
- @ApiParam(name = "导航语音")
- @ApiModelProperty(value = "导航语音", name = "instruction")
- private String instruction;
- // 距离
- @ApiParam(name = "距离")
- @ApiModelProperty(value = "距离", name = "distance")
- private Long distance;
- // 线数据
- @ApiParam(name = "线数据")
- @ApiModelProperty(value = "线数据", name = "polyline")
- private String polyline;
- // 动作
- @ApiParam(name = "动作")
- @ApiModelProperty(value = "动作", name = "action")
- private String action;
- // 插入时间
- @ApiParam(name = "插入时间")
- @ApiModelProperty(value = "插入时间", name = "intm")
- private Date intm;
- // 最后修改时间
- @ApiParam(name = "最后修改时间")
- @ApiModelProperty(value = "最后修改时间", name = "uptm")
- private Date uptm;
- // 数据状态(0:正常;9:删除)
- @ApiParam(name = "数据状态(0:正常;9:删除)")
- @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
- private String dataStat;
- public BisInspTravelPlanPolylineParam() {
- }
- 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 getInstruction() {
- return instruction;
- }
- public void setInstruction(String instruction) {
- this.instruction = instruction;
- }
- public Long getDistance() {
- return distance;
- }
- public void setDistance(Long distance) {
- this.distance = distance;
- }
- public String getPolyline() {
- return polyline;
- }
- public void setPolyline(String polyline) {
- this.polyline = polyline;
- }
- public String getAction() {
- return action;
- }
- public void setAction(String action) {
- this.action = action;
- }
- 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;
- }
- }
|