123456789101112131415161718 |
- <?php
- namespace app\common\api;
- use app\common\model\Dict;
- /**
- * Description of DictApi
- *
- * @author sgq
- */
- class DictApi {
- public static function selectByParentCode($code) {
- $dictList = Dict::where("pcode", $code)->select()->toArray();
- }
- }
|