| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- package com.kcim.vo;
- import io.swagger.annotations.ApiOperation;
- import lombok.Data;
- /**
- * @author 李加喜
- * @Package com.imed.costaccount.model.vo
- * @date 2021-09-01 17:58
- */
- @Data
- @ApiOperation("科室损益记录数据")
- public class FileRecordDepartmentVO {
- private Long id;
- /**
- * 年
- */
- private Integer dateYear;
- /**
- * 月
- */
- private Integer dateMonth;
- /**
- * 文件类型
- */
- private String fileType;
- /**
- * 文件名称
- */
- private String fileName;
- /**
- * 文件上传路径
- */
- private String fileUrl;
- /**
- * 创建时间13位时间戳
- */
- private Long createTime;
- /**
- * 更新时间
- */
- private String updateTime;
- }
|