|  |  |  | 
|---|
|  |  |  | package com.doumee.dao.business.model; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.doumee.core.annotation.excel.ExcelColumn; | 
|---|
|  |  |  | import com.doumee.service.business.third.model.LoginUserModel; | 
|---|
|  |  |  | import io.swagger.annotations.ApiModel; | 
|---|
|  |  |  | import io.swagger.annotations.ApiModelProperty; | 
|---|
|  |  |  | import com.baomidou.mybatisplus.annotation.IdType; | 
|---|
|  |  |  | 
|---|
|  |  |  | @Data | 
|---|
|  |  |  | @ApiModel("报警记录信息表") | 
|---|
|  |  |  | @TableName("`warning`") | 
|---|
|  |  |  | public class Warning { | 
|---|
|  |  |  | public class Warning  extends LoginUserModel { | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @TableId(type = IdType.AUTO) | 
|---|
|  |  |  | @ApiModelProperty(value = "主键", example = "1") | 
|---|
|  |  |  | @ExcelColumn(name="主键") | 
|---|
|  |  |  | private Integer id; | 
|---|
|  |  |  | 
|---|
|  |  |  | @ExcelColumn(name="订阅用户(关联member)") | 
|---|
|  |  |  | private Integer subscribeMemberId; | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } | 
|---|