UserPay.php 381 B

12345678910111213141516171819
  1. <?php
  2. namespace app\user\model;
  3. use think\Model;
  4. class UserPay extends Model{
  5. protected $createTime = 'create_time'; // 每次创建时间
  6. protected $autoWriteTimestamp = 'datetime'; // 开启自动写入时间戳字段
  7. public function initialize(){
  8. parent::initialize();
  9. }
  10. public function add($data){
  11. return $this->db()->insert($data);
  12. }
  13. }