项目管理接口

This commit is contained in:
zhumeixiao
2024-09-30 15:37:16 +08:00
parent 237da90701
commit 20e7998c13
5 changed files with 54 additions and 0 deletions

View File

@ -0,0 +1,19 @@
package com.fastbee.ggroup.domain;
import com.fastbee.common.core.domain.BaseEntity;
import io.swagger.annotations.ApiModel;
import lombok.Data;
/**
* 组对象 g_groups
*
* @author kerwincui
* @date 2024-09-27
*/
@ApiModel(value = "GLegend",description = "图例 g_Legend")
@Data
public class GLegend extends BaseEntity {
private int id;
private String icon;
private int type;
}

View File

@ -0,0 +1,8 @@
package com.fastbee.ggroup.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
public interface GLegendMapper extends BaseMapper<GLegendMapper> {
}

View File

@ -0,0 +1,4 @@
package com.fastbee.ggroup.service;
public interface GLegendServiceImpl {
}

View File

@ -0,0 +1,5 @@
package com.fastbee.ggroup.service.impl;
public class GLegendServiceImpl implements com.fastbee.ggroup.service.GLegendServiceImpl {
}