Fees.php 419 B

1234567891011121314151617
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2017 https://www.sapixx.com All rights reserved.
  4. * @license Licensed (http://www.apache.org/licenses/LICENSE-2.0).
  5. * @author pillar<ltmn@qq.com>
  6. * 运费管理
  7. */
  8. namespace app\popupshop\model;
  9. use think\Model;
  10. class Fees extends Model{
  11. protected $pk = 'id';
  12. protected $table = 'ai_popupshop_fees';
  13. protected $autoWriteTimestamp = true;
  14. }