UPDATE: VERSION-20260331

This commit is contained in:
libertyspy
2026-03-31 14:33:02 +08:00
parent a0d8f555f9
commit a4d9e8d8eb
5 changed files with 142 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
package com.solution.system.mapper;
/*
* This file is part of the kernelstudio package.
*
* (c) 2014-2026 zlin <admin@kernelstudio.com>
*
* For the full copyright and license information, please view the LICENSE file
* that was distributed with this source code.
*/
import com.solution.system.domain.HbNodeCommand;
import java.util.List;
public interface HbNodeCommandMapper {
List<HbNodeCommand> findAll();
}