12345678910111213141516171819202122232425 |
- package cn.cslg.pas.domain.business;
- import cn.cslg.pas.domain.BaseEntity;
- import com.baomidou.mybatisplus.annotation.TableField;
- import lombok.Data;
- /**
- * 报告事务与文件关联表
- * @Author xiexiang
- * @Date 2023/12/23
- */
- @Data
- public class AssoReportAffairFile extends BaseEntity<AssoReportAffairFile> {
- /**
- * 报告事务id
- */
- @TableField(value = "report_affair_id")
- private Integer reportAffairId;
- /**
- * 文件guid
- */
- @TableField(value = "file_guid")
- private String fileGuid;
- }
|