RatingQuestion.php
372 字节
<?php
/**
* @remark :
* @name :RatingQuestion.php
* @author :lyh
* @method :post
* @time :2024/1/20 11:14
*/
namespace App\Models\Scoring;
use App\Models\Base;
/**
* @remark :问题
* @name :RatingQuestion
* @author :lyh
* @method :post
* @time :2024/1/20 11:15
*/
class RatingQuestion extends Base
{
protected $table = 'gl_rating_questions';
}