| 123456789101112131415161718192021222324 |
- <?php
- /**
- *
- * @copyright ©2020 点小铺
- * @author hanj
- * @link: https://dyuit.com
- * Created by VSCode
- */
- namespace app\common\model\recharge;
- use app\common\model\BaseModel;
- /**
- * 用户充值订单套餐快照模型
- * Class OrderPlan
- * @package app\common\model\recharge
- */
- class OrderPlan extends BaseModel
- {
- protected $name = 'recharge_order_plan';
- }
|