package org.springblade.modules.police.vo;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import org.springblade.modules.police.entity.PoliceAffairsGridEntity;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
/**
|
* 警务网格(辖区)表 视图实体类
|
*
|
* @author BladeX
|
* @since 2024-02-01
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = true)
|
public class PoliceAffairsGridVO extends PoliceAffairsGridEntity {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 社区编号
|
*/
|
@ApiModelProperty(value = "社区编号")
|
private String communityCode;
|
|
/**
|
* 角色别名
|
*/
|
@ApiModelProperty(value = "角色别名")
|
private String roleName;
|
|
}
|