// +---------------------------------------------------------------------- namespace app\model\System; use think\Model; use think\model\concern\SoftDelete; /** * 系统邮箱模型 */ class SystemEmail extends Model { // 数据库表名 protected $name = 'mete_system_email'; // 字段类型转换 protected $type = [ 'id' => 'integer', 'from_address' => 'string', 'from_name' => 'string', 'host' => 'string', 'port' => 'integer', 'username' => 'string', 'password' => 'string', 'encryption' => 'string', 'timeout' => 'integer', 'create_time' => 'datetime', 'update_time' => 'datetime', ]; }