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.
28 lines
716 B
28 lines
716 B
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 = "DcRoad", description = "道路信息实体")
|
|
public class DcRoad {
|
|
|
|
@ApiModelProperty("ID")
|
|
private Long id;
|
|
@ApiModelProperty("道路名称")
|
|
private String roadName;
|
|
@ApiModelProperty("道路方向")
|
|
private String roadDirection;
|
|
@ApiModelProperty("道路编号")
|
|
private String roadCode;
|
|
@ApiModelProperty("单位")
|
|
private String organization;
|
|
@ApiModelProperty("创建时间")
|
|
private Date createTime;
|
|
@ApiModelProperty("修改时间")
|
|
private Date updateTime;
|
|
|
|
}
|
|
|