AssoReportAffairFile.java 538 B

12345678910111213141516171819202122232425
  1. package cn.cslg.pas.domain.business;
  2. import cn.cslg.pas.domain.BaseEntity;
  3. import com.baomidou.mybatisplus.annotation.TableField;
  4. import lombok.Data;
  5. /**
  6. * 报告事务与文件关联表
  7. * @Author xiexiang
  8. * @Date 2023/12/23
  9. */
  10. @Data
  11. public class AssoReportAffairFile extends BaseEntity<AssoReportAffairFile> {
  12. /**
  13. * 报告事务id
  14. */
  15. @TableField(value = "report_affair_id")
  16. private Integer reportAffairId;
  17. /**
  18. * 文件guid
  19. */
  20. @TableField(value = "file_guid")
  21. private String fileGuid;
  22. }