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.
40 lines
713 B
40 lines
713 B
3 years ago
|
<?php
|
||
|
/**
|
||
|
*
|
||
|
* Tender.php
|
||
|
* User: ChenLong
|
||
|
* DateTime: 2020-12-21 15:35:22
|
||
|
*/
|
||
|
|
||
|
|
||
|
namespace app\common\model;
|
||
|
|
||
|
use think\Model;
|
||
|
use app\common\BaseModel;
|
||
|
|
||
|
/**
|
||
|
* Class Tender
|
||
|
* @package app\common\model\Tender
|
||
|
* @author chenlong <vip_chenlong@163.com>
|
||
|
*/
|
||
|
class Tender extends Model
|
||
|
{
|
||
|
use BaseModel;
|
||
|
protected $autoWriteTimestamp = true;
|
||
|
protected $schema = [
|
||
|
'id' => 'int',
|
||
|
'member_id' => 'int',
|
||
|
'bidding_id' => 'int',
|
||
|
'tender_price' => 'decimal',
|
||
|
'file_id' => 'int',
|
||
|
'create_time' => 'datetime',
|
||
|
'update_time' => 'datetime',
|
||
|
'delete_time' => 'int',
|
||
|
'ip' => 'varchar',
|
||
|
'ip_address' => 'varchar',
|
||
|
|
||
|
];
|
||
|
|
||
|
}
|
||
|
|