Polychannel.php 230 B

123456789101112131415
  1. <?php
  2. namespace app\common\model;
  3. use think\Cache;
  4. /**
  5. * 聚合渠道参数配置表
  6. * @author Administrator
  7. */
  8. class Polychannel extends \think\Model
  9. {
  10. protected $pk = 'id';
  11. protected $table = 'nw_polychannel';
  12. }