代办消息列表
parent
e689eec813
commit
8792e1e7ab
@ -0,0 +1,9 @@
|
||||
package com.glxp.api.dao.system;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.glxp.api.entity.system.SysMsgTodoEntity;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
@Mapper
|
||||
public interface SysMsgTodoMapper extends BaseMapper<SysMsgTodoEntity> {
|
||||
}
|
@ -0,0 +1,12 @@
|
||||
package com.glxp.api.service.system;
|
||||
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.glxp.api.dao.system.SysMsgTodoMapper;
|
||||
import com.glxp.api.entity.system.SysMsgTodoEntity;
|
||||
|
||||
@Service
|
||||
public class SysMsgTodoService extends ServiceImpl<SysMsgTodoMapper, SysMsgTodoEntity> {
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,26 @@
|
||||
<?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.glxp.api.dao.system.SysMsgTodoMapper">
|
||||
<resultMap id="BaseResultMap" type="com.glxp.api.entity.system.SysMsgTodoEntity">
|
||||
<!--@mbg.generated-->
|
||||
<!--@Table sys_msg_todo-->
|
||||
<id column="id" jdbcType="INTEGER" property="id"/>
|
||||
<result column="code" jdbcType="VARCHAR" property="code"/>
|
||||
<result column="msgType" jdbcType="TINYINT" property="msgType"/>
|
||||
<result column="msgContent" jdbcType="VARCHAR" property="msgContent"/>
|
||||
<result column="dealStatus" jdbcType="TINYINT" property="dealStatus"/>
|
||||
<result column="pushStatus" jdbcType="TINYINT" property="pushStatus"/>
|
||||
<result column="toUrl" jdbcType="VARCHAR" property="toUrl"/>
|
||||
<result column="createTime" jdbcType="TIMESTAMP" property="createTime"/>
|
||||
<result column="updateUser" jdbcType="VARCHAR" property="updateUser"/>
|
||||
<result column="updateTime" jdbcType="TIMESTAMP" property="updateTime"/>
|
||||
<result column="deptCode" jdbcType="VARCHAR" property="deptCode"/>
|
||||
<result column="invCode" jdbcType="VARCHAR" property="invCode"/>
|
||||
<result column="remark" jdbcType="VARCHAR" property="remark"/>
|
||||
</resultMap>
|
||||
<sql id="Base_Column_List">
|
||||
<!--@mbg.generated-->
|
||||
id, code, msgType, msgContent, dealStatus, pushStatus, toUrl, createTime, updateUser,
|
||||
updateTime, deptCode, invCode, remark
|
||||
</sql>
|
||||
</mapper>
|
Loading…
Reference in New Issue