12345678910111213141516171819202122 |
- <?php
- namespace app\common\api;
- use app\common\model\LivingAllowance as laModel;
- /**
- * Description of LivingAllowanceApi
- *
- * @author sgq
- */
- class LivingAllowanceApi {
- public static function getList($where = []) {
- return laModel::where($where)->select()->toArray();
- }
- public static function getInfoById($id) {
- return laModel::where("id", $id)->find();
- }
- }
|