项目管理接口
This commit is contained in:
parent
237da90701
commit
20e7998c13
@ -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 {
|
||||
|
||||
}
|
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!DOCTYPE mapper
|
||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.fastbee.ggroup.mapper.GLegendMapper">
|
||||
|
||||
<resultMap type="GLegend" id="GGroupsResult">
|
||||
<result property="id" column="id" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="icon" column="icon"/>
|
||||
<result property="type" column="type"/>
|
||||
</resultMap>
|
||||
|
||||
|
||||
</mapper>
|
Loading…
x
Reference in New Issue
Block a user