| | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import lombok.Data; |
| | | |
| | | import javax.persistence.Column; |
| | | import javax.persistence.Entity; |
| | | import javax.persistence.Id; |
| | | import javax.persistence.Table; |
| | | import javax.persistence.*; |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | |
| | | @Column(name = "zhgxsj") |
| | | private Date zhgxsj; |
| | | |
| | | /** |
| | | * --------鸟瞰图信息-------- |
| | | **/ |
| | | @Column(name = "FILE_ID_", length = 30) |
| | | @PropertyDef(label = "鸟瞰图id") |
| | | private String fileId; |
| | | |
| | | @Column(name = "FILE_NAME_", length = 50) |
| | | @PropertyDef(label = "鸟瞰图名称") |
| | | private String fileName; |
| | | |
| | | /** |
| | | * --------宣传视频信息-------- |
| | | **/ |
| | | @Column(name = "VIDEO_ID_", length = 30) |
| | | @PropertyDef(label = "视频附件id") |
| | | private String videoId; |
| | | |
| | | @Column(name = "VIDEO_NAME_", length = 50) |
| | | @PropertyDef(label = "视频附件名称") |
| | | private String videoName; |
| | | |
| | | |
| | | //全路径 |
| | | @Transient |
| | | private String imgFilePath; |
| | | |
| | | //全路径 |
| | | @Transient |
| | | private String videoFilePath; |
| | | } |