23 lines
813 B
TypeScript
23 lines
813 B
TypeScript
/**
|
|
* Copyright (c) 2013-Now https://jeesite.com All rights reserved.
|
|
* No deletion without permission, or be held responsible to law.
|
|
* @author gaoxq
|
|
*/
|
|
import { BasicModel } from '@jeesite/core/api/model/baseModel';
|
|
import { MySftpHosts } from '@jeesite/biz/api/biz/mySftpHosts';
|
|
|
|
export interface MySftpAccounts extends BasicModel<MySftpAccounts> {
|
|
createTime?: string; // 记录时间
|
|
accountId?: string; // 账号标识
|
|
hostId: MySftpHosts; // 主机名称 父类
|
|
username: string; // 登录账号
|
|
password: string; // 登录密码
|
|
rootPath: string; // 初始目录
|
|
authType: string; // 认证方式
|
|
privateKey?: string; // 密钥内容
|
|
expireTime?: string; // 过期时间
|
|
accountRemark?: string; // 账号备注
|
|
updateTime?: string; // 更新时间
|
|
ustatus: string; // 状态
|
|
}
|