/* * Copyright (c) 2018-2028, Chill Zhuang All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * Neither the name of the dreamlu.net developer nor the names of its * contributors may be used to endorse or promote products derived from * this software without specific prior written permission. * Author: Chill 庄骞 (smallchill@163.com) */ package org.springblade.modules.place.vo; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import lombok.EqualsAndHashCode; import org.springblade.modules.place.entity.PlaceExtEntity; import org.springblade.modules.place.entity.PlacePractitionerEntity; import java.util.ArrayList; import java.util.List; /** * 场所详情表 视图实体类 * * @author BladeX * @since 2023-10-28 */ @Data @EqualsAndHashCode(callSuper = true) public class PlaceExtVO extends PlaceExtEntity { private static final long serialVersionUID = 1L; /** * 场所名称 */ private String placeName; /** * 场所位置 */ @ApiModelProperty(value = "场所位置") private String location; /** * 经度 */ private String lng; /** * 纬度 */ private String lat; /** * 地址编码 */ private String houseCode; /** * 角色名称 */ private String roleName; /** * 从业人员 */ private List placePractitioner = new ArrayList<>(); @ApiModelProperty("开始时间") private String startTime; @ApiModelProperty("结束时间") private String endTime; private String communityCode; }