项目管理接口
This commit is contained in:
@ -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;
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
package com.fastbee.ggroup.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
public interface GLegendMapper extends BaseMapper<GLegendMapper> {
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,4 @@
|
||||
package com.fastbee.ggroup.service;
|
||||
|
||||
public interface GLegendServiceImpl {
|
||||
}
|
@ -0,0 +1,5 @@
|
||||
package com.fastbee.ggroup.service.impl;
|
||||
|
||||
public class GLegendServiceImpl implements com.fastbee.ggroup.service.GLegendServiceImpl {
|
||||
|
||||
}
|
Reference in New Issue
Block a user