/** 账号 */ // CREATE TABLE `account` ( // `accountid` varchar(50) NOT NULL COMMENT '账号id', // `accountname` varchar(50) NOT NULL COMMENT '账号(禁止编辑)', // `accountpwd` varchar(50) NOT NULL COMMENT '密码', // `accountstatus` int(11) NOT NULL COMMENT '账号是否可用', // `accountbz` varchar(50) DEFAULT NULL COMMENT '备注', // `accountgrouplist` varchar(50) DEFAULT NULL COMMENT '角色组', // `accountpopedom` text COMMENT '单一权限', // `accountcreateuser` varchar(50) DEFAULT NULL COMMENT '账号创建人', // `accountcreatedate` datetime DEFAULT NULL COMMENT '账号开通时间', // `accountenddate` datetime DEFAULT NULL COMMENT '账号到期时间', // `accountupdate` datetime DEFAULT NULL COMMENT '账号更新时间', // `accountupuser` varchar(50) DEFAULT NULL COMMENT '账号更新人', // `accountworkerid` varchar(50) DEFAULT NULL COMMENT '关联职员id', // PRIMARY KEY (`accountid`) // ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='账号'; interface AccountEntity { /** 账号id */ accountid: string; /** 账号(禁止编辑) */ accountname: string; /** 密码 */ accountpwd: string; /** 账号是否可用 */ accountstatus: number; /** 备注 */ accountbz: string; /** 角色组 */ accountgrouplist: string; /** 单一权限 */ accountpopedom: string; /** 账号创建人 */ accountcreateuser: string; /** 账号开通时间 */ accountcreatedate: string; /** 账号到期时间 */ accountenddate: string; /** 账号更新时间 */ accountupdate: string; /** 账号更新人 */ accountupuser: string; /** 关联职员id */ accountworkerid: string; } export type { AccountEntity };