srt_cloud/srt-cloud-data-service/src/main/java/net/srt/entity/DataServiceApiGroupEntity.java

61 lines
777 B
Java
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package net.srt.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import lombok.EqualsAndHashCode;
import net.srt.framework.mybatis.entity.BaseEntity;
/**
* 数据服务-api分组
*
* @author zrx 985134801@qq.com
* @since 1.0.0 2023-01-28
*/
@EqualsAndHashCode(callSuper=false)
@Data
@TableName("data_service_api_group")
public class DataServiceApiGroupEntity extends BaseEntity {
/**
* 父级id顶级为0
*/
private Long parentId;
/**
* 1-文件夹 2-api目录
*/
private Integer type;
/**
* 名称
*/
private String name;
/**
* 描述
*/
private String description;
/**
* 序号
*/
private Integer orderNo;
/**
* 路径
*/
private String path;
/**
* 项目id
*/
private Long projectId;
}