12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- package com.imed.costaccount.model;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableLogic;
- import com.baomidou.mybatisplus.annotation.TableName;
- import lombok.AllArgsConstructor;
- import lombok.Data;
- import lombok.NoArgsConstructor;
- import lombok.experimental.Accessors;
- import java.io.Serializable;
- /**
- * 文件上传记录
- *
- * @author KCYG
- * @email KCYG@xinxicom
- * @date 2021-08-10 14:42:20
- */
- @Data
- @Accessors(chain = true)
- @AllArgsConstructor
- @NoArgsConstructor
- @TableName("cost_income_file")
- public class CostIncomeFile implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- * 主键 文件编号
- */
- @TableId
- private Long id;
- /**
- * 文件类型
- */
- private String fileType;
- /**
- * 文件名称
- */
- private String fileName;
- /**
- * 文件上传路径
- */
- private String fileUrl;
- /**
- * 成功导入记录数
- */
- private Integer successAmount;
- /**
- * 总记录数
- */
- private Integer totalAmount;
- /**
- * 医院Id
- */
- private Long hospId;
- /**
- * 用户Id
- */
- private Long userId;
- /**
- * 用户名称
- */
- private String userName;
- /**
- * 错误详情
- */
- private String errorList;
- /**
- * 年份
- */
- private Integer dateYear;
- /**
- * 月份
- */
- private Integer dateMonth;
- /**
- * 是否撤销
- */
- private Integer rollbackStatus;
- /**
- * 创建时间13位时间戳
- */
- private Long createTime;
- /**
- * 删除时间,如果存在表示已删除13位时间戳
- */
- @TableLogic(value = "0",delval = "UNIX_TIMESTAMP(NOW()) * 1000")
- private Long deleteTime;
- }
|