bpframework-cli
Version:
cli of bpframework
27 lines (21 loc) • 496 B
text/typescript
;
/**
* Copyright (c) 2022 bpframework Co.,Ltd. All Rights Reserved.
* Author: brian.li
* Date: 2022-01-24 18:51
* Desc:
*/
import { Column, Table } from '@bpframework/middleware-db';
import { dataType } from 'febs-db';
/**
* table model
*/
('tablename')
export class Table1Model {
({ type: dataType.Char(32), primaryKey: true })
id: string;
({ type: dataType.VarChar(64) })
col1: string;
({ type: dataType.Bit() })
col2: boolean;
}