ChannelRechargeRatio.php 255 B

12345678910111213141516
  1. <?php
  2. namespace app\common\model;
  3. /**
  4. * 渠道充值比例表
  5. * @author Administrator
  6. */
  7. class ChannelRechargeRatio extends \think\Model
  8. {
  9. protected $pk = 'id';
  10. protected $table = 'nw_channel_recharge_ratio';
  11. }