1234567891011121314151617181920212223242526272829 |
- <?php
- namespace app\common\model;
- use think\Model;
- class DispatchSkill extends Model
- {
-
- protected $autoWriteTimestamp = 'int';
-
- protected $createTime = 'createtime';
-
- public function getSkillInfo($skill_id) {
-
- $skillModel = new \app\common\model\DispatchSkill();
- $where = [];
- $where["id"] = $skill_id;
- $skillInfo = $skillModel->where($where)->find();
- return $skillInfo;
- }
- }
|