123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- package com.xjrsoft.module.asset.vo;
- import com.alibaba.excel.annotation.ExcelProperty;
- import com.alibaba.excel.annotation.write.style.ContentStyle;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- import java.util.Date;
- /**
- * @title: 资产管理盘点分页列表出参
- * @Author szs
- * @Date: 2024-04-07
- * @Version 1.0
- */
- @Data
- public class WfAssetManageInventoryPageVo {
- /**
- *
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("")
- @ApiModelProperty("")
- private String id;
- /**
- *
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("")
- @ApiModelProperty("")
- private Long createUserId;
- /**
- *
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("")
- @ApiModelProperty("")
- private Date createDate;
- /**
- *
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("")
- @ApiModelProperty("")
- private Long modifyUserId;
- /**
- *
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("")
- @ApiModelProperty("")
- private Date modifyDate;
- /**
- *
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("")
- @ApiModelProperty("")
- private Integer deleteMark;
- /**
- *
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("")
- @ApiModelProperty("")
- private Integer enabledMark;
- /**
- * 状态(0:未结束 1:结束)
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("状态(0:未结束 1:结束)")
- @ApiModelProperty("状态(0:未结束 1:结束)")
- private Short status;
- /**
- * 区域类型
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("区域类型")
- @ApiModelProperty("区域类型")
- private String areaType;
- /**
- * 附件id
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("附件id")
- @ApiModelProperty("附件id")
- private Long folderId;
- /**
- * 楼栋id
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("楼栋id")
- @ApiModelProperty("楼栋id")
- private Long baseOfficeBuildId;
- /**
- * 楼层
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("楼层")
- @ApiModelProperty("楼层")
- private Integer floorNumber;
- /**
- * 门牌号
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("门牌号")
- @ApiModelProperty("门牌号")
- private String roomNumber;
- }
|