模板解析功能提交

This commit is contained in:
2023-05-22 20:56:54 +08:00
parent a16f49c888
commit 103106ce65
44 changed files with 1547 additions and 20 deletions

View File

@@ -0,0 +1,16 @@
package com.njcn.access.mapper;
import com.github.jeffreyning.mybatisplus.base.MppBaseMapper;
import com.njcn.access.pojo.po.CsAlmPO;
/**
* <p>
* 设备告警数据表 Mapper 接口
* </p>
*
* @author xuyang
* @since 2023-05-19
*/
public interface CsAlmMapper extends MppBaseMapper<CsAlmPO> {
}

View File

@@ -1,6 +1,6 @@
package com.njcn.access.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.github.jeffreyning.mybatisplus.base.MppBaseMapper;
import com.njcn.access.pojo.po.CsBmdPO;
/**
@@ -11,6 +11,6 @@ import com.njcn.access.pojo.po.CsBmdPO;
* @author xuyang
* @since 2023-05-11
*/
public interface CsBmdMapper extends BaseMapper<CsBmdPO> {
public interface CsBmdMapper extends MppBaseMapper<CsBmdPO> {
}

View File

@@ -0,0 +1,16 @@
package com.njcn.access.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.njcn.access.pojo.po.CsCtrlPO;
/**
* <p>
* 控制表 Mapper 接口
* </p>
*
* @author xuyang
* @since 2023-05-19
*/
public interface CsCtrlMapper extends BaseMapper<CsCtrlPO> {
}

View File

@@ -0,0 +1,16 @@
package com.njcn.access.mapper;
import com.github.jeffreyning.mybatisplus.base.MppBaseMapper;
import com.njcn.access.pojo.po.CsDiPO;
/**
* <p>
* 开入表 Mapper 接口
* </p>
*
* @author xuyang
* @since 2023-05-19
*/
public interface CsDiMapper extends MppBaseMapper<CsDiPO> {
}

View File

@@ -0,0 +1,16 @@
package com.njcn.access.mapper;
import com.github.jeffreyning.mybatisplus.base.MppBaseMapper;
import com.njcn.access.pojo.po.CsDoPO;
/**
* <p>
* 开出表 Mapper 接口
* </p>
*
* @author xuyang
* @since 2023-05-19
*/
public interface CsDoMapper extends MppBaseMapper<CsDoPO> {
}

View File

@@ -0,0 +1,16 @@
package com.njcn.access.mapper;
import com.github.jeffreyning.mybatisplus.base.MppBaseMapper;
import com.njcn.access.pojo.po.CsEvtPO;
/**
* <p>
* 事件表 Mapper 接口
* </p>
*
* @author xuyang
* @since 2023-05-19
*/
public interface CsEvtMapper extends MppBaseMapper<CsEvtPO> {
}

View File

@@ -0,0 +1,16 @@
package com.njcn.access.mapper;
import com.github.jeffreyning.mybatisplus.base.MppBaseMapper;
import com.njcn.access.pojo.po.CsEvtParmPO;
/**
* <p>
* 事件参数表 Mapper 接口
* </p>
*
* @author xuyang
* @since 2023-05-19
*/
public interface CsEvtParmMapper extends MppBaseMapper<CsEvtParmPO> {
}

View File

@@ -0,0 +1,16 @@
package com.njcn.access.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.njcn.access.pojo.po.CsParmPO;
/**
* <p>
* 参数表 Mapper 接口
* </p>
*
* @author xuyang
* @since 2023-05-19
*/
public interface CsParmMapper extends BaseMapper<CsParmPO> {
}

View File

@@ -0,0 +1,16 @@
package com.njcn.access.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.njcn.access.pojo.po.CsSetPO;
/**
* <p>
* 设备定值数据表 Mapper 接口
* </p>
*
* @author xuyang
* @since 2023-05-19
*/
public interface CsSetMapper extends BaseMapper<CsSetPO> {
}

View File

@@ -0,0 +1,16 @@
package com.njcn.access.mapper;
import com.github.jeffreyning.mybatisplus.base.MppBaseMapper;
import com.njcn.access.pojo.po.CsStsPO;
/**
* <p>
* 状态表 Mapper 接口
* </p>
*
* @author xuyang
* @since 2023-05-19
*/
public interface CsStsMapper extends MppBaseMapper<CsStsPO> {
}