39 lines
730 B
Java
39 lines
730 B
Java
package com.rzdata.web.domain;
|
|
|
|
import com.rzdata.common.annotation.Excel;
|
|
import com.rzdata.common.core.domain.BaseEntity;
|
|
import lombok.Data;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* tool_relation对象 t_tool_relation
|
|
*
|
|
* @author ja
|
|
* @date 2024-09-08
|
|
*/
|
|
@Data
|
|
public class ToolRelation extends BaseEntity
|
|
{
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/** 主键 */
|
|
private String id;
|
|
|
|
/** 源id */
|
|
@Excel(name = "源id")
|
|
private String resourceId;
|
|
|
|
/** 目标id */
|
|
@Excel(name = "目标id")
|
|
private String targetId;
|
|
|
|
/** 文件编号 */
|
|
private String toolCode;
|
|
/** 文件名称 */
|
|
private String toolName;
|
|
|
|
/** 资源名称 */
|
|
private List<String> resourceIds;
|
|
}
|