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;
- }
- }
|