| | |
| | | */ |
| | | package org.springblade.modules.information.vo; |
| | | |
| | | import org.springblade.modules.information.entity.Information; |
| | | import io.swagger.annotations.ApiModel; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import io.swagger.annotations.ApiModel; |
| | | import org.springblade.modules.information.entity.Information; |
| | | |
| | | /** |
| | | * 视图实体类 |
| | |
| | | @EqualsAndHashCode(callSuper = true) |
| | | @ApiModel(value = "InformationVO对象", description = "InformationVO对象") |
| | | public class InformationVO extends Information { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * 单位名称 |
| | | */ |
| | | private String deptName; |
| | | private String znum; |
| | | private String cnum; |
| | | private String pnum; |
| | | |
| | | /** |
| | | * 创建人部门id |
| | | */ |
| | | private String createDeptId; |
| | | |
| | | /** |
| | | * 开始时间 |
| | | */ |
| | | private String startTime; |
| | | |
| | | /** |
| | | * 结束时间 |
| | | */ |
| | | private String endTime; |
| | | |
| | | /** |
| | | * 公司名稱 |
| | | */ |
| | | private String deptid; |
| | | |
| | | /** |
| | | * 辖区名称 |
| | | */ |
| | | private String jurisdictionName; |
| | | |
| | | } |