ShroffAccount.php 294 B

12345678910111213141516
  1. <?php
  2. namespace app\common\model;
  3. /**
  4. * 收款账号表
  5. * @author Administrator
  6. */
  7. class ShroffAccount extends \think\Model
  8. {
  9. protected $pk = 'id';
  10. protected $table = 'cy_shroff_account';
  11. protected $dateFormat = false; //时间戳格式不自动转换
  12. }