| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- package com.xjrsoft.module.ledger.vo;
- import com.alibaba.excel.annotation.ExcelProperty;
- import com.alibaba.excel.annotation.write.style.ContentStyle;
- import com.xjrsoft.module.system.entity.File;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- import java.util.Date;
- import java.util.List;
- /**
- * @title: 物品申购分页列表出参
- * @Author dzx
- * @Date: 2024-02-19
- * @Version 1.0
- */
- @Data
- public class WfSubscriptionPageVo {
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("主键编号")
- @ApiModelProperty("主键编号")
- private String id;
- /**
- * 申请部门
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("申请部门")
- @ApiModelProperty("申请部门")
- private String orgName;
- /**
- * 申请日期
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("申请日期")
- @ApiModelProperty("申请日期")
- private Date shenQingRiQi4752;
- /**
- * 申请人
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("申请人")
- @ApiModelProperty("申请人")
- private String userName;
- /**
- * 附件
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("附件")
- @ApiModelProperty("附件")
- private String folderId;
- @ApiModelProperty("附件列表")
- private List<File> fileInfos;
- /**
- * 申请人
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("编号")
- @ApiModelProperty("编号")
- private String number;
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("流程名称")
- @ApiModelProperty("流程名称")
- private String flowName;
- }
|