| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import java.util.Date; |
| | | import lombok.EqualsAndHashCode; |
| | | import org.springblade.core.mp.base.BaseEntity; |
| | | import org.springblade.core.tenant.mp.TenantEntity; |
| | | |
| | | /** |
| | |
| | | @TableName("jczz_task_report_for_repairs") |
| | | @ApiModel(value = "TaskReportForRepairs对象", description = "报事报修任务表") |
| | | @EqualsAndHashCode(callSuper = true) |
| | | public class TaskReportForRepairsEntity extends TenantEntity { |
| | | public class TaskReportForRepairsEntity extends BaseEntity { |
| | | |
| | | /** |
| | | * 类型 1公共维修,2居家维修,3矛盾纠纷,4投诉举报 |
| | |
| | | */ |
| | | @ApiModelProperty(value = "图片路径") |
| | | private String imageUrls; |
| | | |
| | | } |