com.ape9527.core.entity.SysResource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ape-core Show documentation
Show all versions of ape-core Show documentation
Ape low code platform core module
The newest version!
package com.ape9527.core.entity;
import com.ape9527.core.entity.BaseEntity;
import lombok.Data;
/**
* 系统资源
*
* @author YuanShuai[[email protected]]
*/
@Data
public class SysResource extends BaseEntity {
/** 资源名称 */
private String resourceName;
/** 资源类型 */
private String resourceType;
/** 资源链接 */
private String resourceUrl;
/** 资源分组名称 */
private String groupName;
/** oss名称 */
private String ossName;
}