52 lines
1.4 KiB
PHP
52 lines
1.4 KiB
PHP
<?php
|
|
namespace app\model;
|
|
|
|
use think\Model;
|
|
use think\model\concern\SoftDelete;
|
|
|
|
/**
|
|
* 企业模型
|
|
*/
|
|
class Enterprise extends Model
|
|
{
|
|
use SoftDelete;
|
|
|
|
// 设置表名(不带前缀,前缀在数据库配置中设置)
|
|
protected $name = 'enterprises';
|
|
|
|
// 软删除字段(驼峰命名,时间戳格式)
|
|
protected $deleteTime = 'deletedAt';
|
|
|
|
// 设置字段信息(匹配数据库字段命名:驼峰命名)
|
|
protected $schema = [
|
|
'id' => 'int',
|
|
'name' => 'string',
|
|
'code' => 'string',
|
|
'contactName' => 'string',
|
|
'contactPhone' => 'string',
|
|
'contactEmail' => 'string',
|
|
'balance' => 'float',
|
|
'status' => 'string',
|
|
'trialExpireAt' => 'int',
|
|
'deletedAt' => 'int',
|
|
'createdAt' => 'int',
|
|
'updatedAt' => 'int',
|
|
];
|
|
|
|
// 自动时间戳(使用驼峰命名,时间戳格式)
|
|
protected $autoWriteTimestamp = 'int';
|
|
|
|
// 时间戳字段名(驼峰命名,匹配数据库)
|
|
protected $createTime = 'createdAt';
|
|
protected $updateTime = 'updatedAt';
|
|
|
|
// 时间字段类型(时间戳格式)
|
|
protected $type = [
|
|
'trialExpireAt' => 'integer',
|
|
'deletedAt' => 'integer',
|
|
'createdAt' => 'integer',
|
|
'updatedAt' => 'integer',
|
|
];
|
|
}
|
|
|