123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- package com.ruoyi.system.domain;
- import com.ruoyi.common.core.annotation.Excel;
- import com.ruoyi.common.datascope.base.domain.BaseBusinessEntity;
- import io.swagger.annotations.ApiModel;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- import java.util.List;
- /**
- * 附件对象 centerdata_t_attach
- *
- * @author ruoyi
- * @date 2022-06-11
- */
- @ApiModel(description = "数据中心附件实体类")
- @Data
- public class CenterdataTAttach extends BaseBusinessEntity {
- private static final long serialVersionUID = 1L;
- /**
- * 业务ID
- */
- @ApiModelProperty(value = "业务id", required = true)
- @Excel(name = "业务ID")
- private String busId;
- private List<String> busIds;
- /**
- * 路径
- */
- @ApiModelProperty(value = "路径", required = false)
- @Excel(name = "路径")
- private String attachPath;
- /**
- * 业务类型(索引)
- */
- @ApiModelProperty(value = "业务类型", required = false)
- @Excel(name = "业务类型")
- private String busIndx;
- /**
- * 附件来源
- */
- @ApiModelProperty(value = "附件来源", required = false)
- @Excel(name = "附件来源")
- private String busSource;
- /**
- * 附件名称
- */
- @ApiModelProperty(value = "附件名称", required = false)
- @Excel(name = "附件名称")
- private String fileName;
- /**
- * 附件类型
- */
- @ApiModelProperty(value = "附件类型", required = false)
- @Excel(name = "附件类型")
- private String fileType;
- /**
- * 排序
- */
- @ApiModelProperty(value = "排序", required = false)
- private int attachSorts;
- }
|