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.
23 lines
689 B
23 lines
689 B
package com.zc.business.domain;
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
@ApiModel(value = "DcRegion", description = "地区实体类")
|
|
public class DcRegion {
|
|
@ApiModelProperty("ID")
|
|
@TableId(value = "id", type = IdType.AUTO)
|
|
private Long id;
|
|
@ApiModelProperty("地区名称")
|
|
private String regionName;
|
|
@ApiModelProperty("经度")
|
|
private String longitude;
|
|
@ApiModelProperty("纬度")
|
|
private String latitude;
|
|
@ApiModelProperty("桩号")
|
|
private String stakeNum;
|
|
}
|
|
|