组态图元入库、查询功能

This commit is contained in:
2023-06-14 19:39:00 +08:00
parent b8cce3c741
commit 38ca57c790
12 changed files with 243 additions and 198 deletions

View File

@@ -0,0 +1,16 @@
package com.njcn.csharmonic.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.njcn.csharmonic.pojo.po.CsElement;
/**
* <p>
* 组态图元库 Mapper 接口
* </p>
*
* @author xuyang
* @since 2023-06-14
*/
public interface CsElementMapper extends BaseMapper<CsElement> {
}