DictApi.php 265 B

123456789101112131415161718
  1. <?php
  2. namespace app\common\api;
  3. use app\common\model\Dict;
  4. /**
  5. * Description of DictApi
  6. *
  7. * @author sgq
  8. */
  9. class DictApi {
  10. public static function selectByParentCode($code) {
  11. $dictList = Dict::where("pcode", $code)->select()->toArray();
  12. }
  13. }