新版订单消耗系统

PartyBAccount.php 311B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: shensong
  5. * Date: 2021/1/26
  6. * Time: 15:17
  7. */
  8. namespace App\Models;
  9. use Illuminate\Database\Eloquent\Model;
  10. class PartyBAccount extends Model
  11. {
  12. // 本公司签约账户信息配置表
  13. protected $table = 'party_b_account';
  14. public $timestamps = false;
  15. }