招标
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

32 lines
538 B

<?php
/**
*
* Collect.php
* User: ChenLong
* DateTime: 2020-12-21 16:00:35
*/
namespace app\common\model;
use think\Model;
use app\common\BaseModel;
/**
* Class Collect
* @package app\common\model\Collect
* @author chenlong <vip_chenlong@163.com>
*/
class Collect extends Model
{
use BaseModel;
protected $schema = [
'id' => 'int',
'member_id' => 'int',
'bidding_id' => 'int',
'create_time' => 'datetime',
'update_time' => 'datetime',
'delete_time' => 'int',
];
}