| package com.doumee.dao.business.model; | 
|   | 
| import com.baomidou.mybatisplus.annotation.TableField; | 
| import com.doumee.core.annotation.excel.ExcelColumn; | 
| import com.doumee.core.model.LoginUserModel; | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import com.baomidou.mybatisplus.annotation.IdType; | 
| import com.baomidou.mybatisplus.annotation.TableId; | 
| import com.baomidou.mybatisplus.annotation.TableName; | 
| import lombok.Data; | 
| import com.fasterxml.jackson.annotation.JsonFormat; | 
| import java.util.Date; | 
| import java.math.BigDecimal; | 
|   | 
| /** | 
|  * 运维房源信息表 | 
|  * @author 江蹄蹄 | 
|  * @date 2024/11/19 16:07 | 
|  */ | 
| @Data | 
| @ApiModel("运维房源信息表") | 
| @TableName("`yw_room`") | 
| public class YwRoom  extends LoginUserModel { | 
|   | 
|     @TableId(type = IdType.AUTO) | 
|     @ApiModelProperty(value = "主键", example = "1") | 
|     @ExcelColumn(name="主键") | 
|     private Integer id; | 
|   | 
|     @ApiModelProperty(value = "创建人编码", example = "1") | 
|     @ExcelColumn(name="创建人编码") | 
|     private Integer creator; | 
|   | 
|     @ApiModelProperty(value = "创建时间") | 
|     @ExcelColumn(name="创建时间") | 
|     @JsonFormat(pattern = "yyyy-MM-dd") | 
|     private Date createDate; | 
|   | 
|     @ApiModelProperty(value = "更新人编码", example = "1") | 
|     @ExcelColumn(name="更新人编码") | 
|     private Integer editor; | 
|   | 
|     @ApiModelProperty(value = "更新时间") | 
|     @ExcelColumn(name="更新时间") | 
|     @JsonFormat(pattern = "yyyy-MM-dd") | 
|     private Date editDate; | 
|   | 
|     @ApiModelProperty(value = "是否删除0否 1是", example = "1") | 
|     @ExcelColumn(name="是否删除0否 1是") | 
|     private Integer isdeleted; | 
|   | 
|     @ApiModelProperty(value = "名称") | 
|     @ExcelColumn(name="名称") | 
|     private String name; | 
|   | 
|     @ApiModelProperty(value = "备注") | 
|     @ExcelColumn(name="备注") | 
|     private String remark; | 
|   | 
|     @ApiModelProperty(value = "状态 0启用 1禁用", example = "1") | 
|     @ExcelColumn(name="状态 0启用 1禁用") | 
|     private Integer status; | 
|   | 
|     @ApiModelProperty(value = "排序码", example = "1") | 
|     @ExcelColumn(name="排序码") | 
|     private Integer sortnum; | 
|   | 
|     @ApiModelProperty(value = "图标") | 
|     @ExcelColumn(name="图标") | 
|     private String imgurl; | 
|   | 
|     @ApiModelProperty(value = "房间编号") | 
|     @ExcelColumn(name="房间编号") | 
|     private String code; | 
|   | 
|     @ApiModelProperty(value = "房号") | 
|     @ExcelColumn(name="房号") | 
|     private String roomNum; | 
|   | 
|     @ApiModelProperty(value = "是否招商 0否 1是", example = "1") | 
|     @ExcelColumn(name="是否招商 0否 1是") | 
|     private Integer isInvestment; | 
|   | 
|     @ApiModelProperty(value = "建筑面积(平方米)", example = "1") | 
|     @ExcelColumn(name="建筑面积(平方米)") | 
|     private BigDecimal area; | 
|   | 
|     @ApiModelProperty(value = "计费面积(平方米)", example = "1") | 
|     @ExcelColumn(name="计费面积(平方米)") | 
|     private BigDecimal feeArea; | 
|   | 
|     @ApiModelProperty(value = "计租面积(平方米)", example = "1") | 
|     @ExcelColumn(name="计租面积(平方米)") | 
|     private BigDecimal rentArea; | 
|   | 
|     @ApiModelProperty(value = "楼层编码(关联yw_floor)", example = "1") | 
|     @ExcelColumn(name="楼层编码") | 
|     private Integer floor; | 
|   | 
|     @ApiModelProperty(value = "所属项目编码(关联yw_project)", example = "1") | 
|     @ExcelColumn(name="所属项目编码(关联yw_project)") | 
|     private Integer projectId; | 
|   | 
|     @ApiModelProperty(value = "所属楼宇编码(关联yw_building)", example = "1") | 
|     @ExcelColumn(name="所属楼宇编码(关联yw_building)") | 
|     private Integer buildingId; | 
|   | 
|     @ApiModelProperty(value = "项目名称") | 
|     @TableField(exist = false) | 
|     private String projectName; | 
|     @ApiModelProperty(value = "楼宇名称") | 
|     @TableField(exist = false) | 
|     private String buildingName; | 
|     @ApiModelProperty(value = "楼层名称") | 
|     @TableField(exist = false) | 
|     private String floorName; | 
|   | 
| } |