招标
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.
 
 
 
 
 

36 lines
654 B

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