// +---------------------------------------------------------------------- namespace App\Models; /** * 动态评论管理-模型 * @author wesmiler * @since 2020/11/11 * Class DynamicCommentModel * @package App\Models */ class DynamicCommentModel extends BaseModel { // 设置数据表 protected $table = 'dynamic_comment'; /** * 获取记录信息 * @param int $id 记录ID * @return array|string * @author wesmiler * @since 2020/11/11 */ public function getInfo($id) { $info = parent::getInfo($id); // TODO: Change the autogenerated stub return $info; } }