short-play-api/application/common/newmodel/SubscriptionModel.php
2023-01-29 10:26:52 +08:00

16 lines
191 B
PHP

<?php
namespace app\common\newmodel;
use think\Model;
class SubscriptionModel extends Model
{
protected $table = 'cps_subscription';
protected $resultSetType = 'collection';
}