You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
package com.zc.business.domain;
|
|
|
|
|
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
@Data
|
|
|
|
@ApiModel(value = "DcStakeMark", description = "桩号实体")
|
|
|
|
public class DcStakeMark {
|
|
|
|
|
|
|
|
public static final String UP = "1";
|
|
|
|
public static final String CENTRE = "2";
|
|
|
|
public static final String DOWN = "3";
|
|
|
|
@ApiModelProperty("ID")
|
|
|
|
private String id;
|
|
|
|
@ApiModelProperty("经度")
|
|
|
|
private String longitude;
|
|
|
|
@ApiModelProperty("纬度")
|
|
|
|
private String latitude;
|
|
|
|
@ApiModelProperty("方向")
|
|
|
|
private String direction;
|
|
|
|
@ApiModelProperty("位置")
|
|
|
|
private String location;
|
|
|
|
@ApiModelProperty("创建时间")
|
|
|
|
private Date createTime;
|
|
|
|
@ApiModelProperty("修改时间")
|
|
|
|
private Date updateTime;
|
|
|
|
@ApiModelProperty("所属辖区")
|
|
|
|
private Long sectionId;
|
|
|
|
|
|
|
|
}
|