generator-begcode
Version:
Spring Boot + Angular/React/Vue in one handy generator
14 lines (13 loc) • 394 B
TypeScript
export default class BlockService {
db: any;
userInfo: any;
blockModel: any;
constructor(dbpath: any);
create(params: any): Promise<any>;
update(id: any, params: any): Promise<any>;
detail(blockId: any): Promise<any>;
delete(blockId: any): Promise<any>;
list(): Promise<any>;
find(params: any): Promise<any>;
findByLabel(label: any): Promise<any>;
}