CenterdataTAttach.java 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. package com.ruoyi.system.domain;
  2. import com.ruoyi.common.core.annotation.Excel;
  3. import com.ruoyi.common.datascope.base.domain.BaseBusinessEntity;
  4. import io.swagger.annotations.ApiModel;
  5. import io.swagger.annotations.ApiModelProperty;
  6. import lombok.Data;
  7. import java.util.List;
  8. /**
  9. * 附件对象 centerdata_t_attach
  10. *
  11. * @author ruoyi
  12. * @date 2022-06-11
  13. */
  14. @ApiModel(description = "数据中心附件实体类")
  15. @Data
  16. public class CenterdataTAttach extends BaseBusinessEntity {
  17. private static final long serialVersionUID = 1L;
  18. /**
  19. * 业务ID
  20. */
  21. @ApiModelProperty(value = "业务id", required = true)
  22. @Excel(name = "业务ID")
  23. private String busId;
  24. private List<String> busIds;
  25. /**
  26. * 路径
  27. */
  28. @ApiModelProperty(value = "路径", required = false)
  29. @Excel(name = "路径")
  30. private String attachPath;
  31. /**
  32. * 业务类型(索引)
  33. */
  34. @ApiModelProperty(value = "业务类型", required = false)
  35. @Excel(name = "业务类型")
  36. private String busIndx;
  37. /**
  38. * 附件来源
  39. */
  40. @ApiModelProperty(value = "附件来源", required = false)
  41. @Excel(name = "附件来源")
  42. private String busSource;
  43. /**
  44. * 附件名称
  45. */
  46. @ApiModelProperty(value = "附件名称", required = false)
  47. @Excel(name = "附件名称")
  48. private String fileName;
  49. /**
  50. * 附件类型
  51. */
  52. @ApiModelProperty(value = "附件类型", required = false)
  53. @Excel(name = "附件类型")
  54. private String fileType;
  55. /**
  56. * 排序
  57. */
  58. @ApiModelProperty(value = "排序", required = false)
  59. private int attachSorts;
  60. }