package cn.gistack.sm.constructionReport.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import org.springblade.core.mp.base.BaseEntity;
|
|
/**
|
* @PROJECT_NAME: skjcmanager
|
* @DESCRIPTION: 施工上报记录表
|
* @USER: guoshilong
|
* @DATE: 2023/6/2 9:38
|
*/
|
@Data
|
@TableName( value = "sm_construction_report",autoResultMap = true)
|
@EqualsAndHashCode(callSuper = true)
|
public class ConstructionReport extends BaseEntity {
|
private static final long serialVersionUID = 1L;
|
|
//水库编码
|
private String resGuid;
|
|
//水库名称
|
private String resName;
|
|
//经度
|
private String lon;
|
|
//纬度
|
private String lat;
|
|
private String description;
|
|
private String imageUrls;
|
}
|