dm-web-react
Version:
The DM web client with React.
58 lines (55 loc) • 1.41 kB
text/typescript
import { column, TableEntity } from "tsbatis";
import { ExchangeImagePriceTable } from "../../../databases/table/exchangeImagePriceTable";
export class ExchangeImagePrice extends TableEntity {
dataId: string;
id: number; // 流水id
issueDataTime: number; // 最新发布时间
bondCode: string;
bid: string; // 买一价
bidValue: number;
bidVolume: string; // 买量
bidVolumeValue: number;
ofr: string;
ofrValue: number; // 卖价
ofrVolume: string;
ofrVolumeValue: number; // 卖量
bidSubChinaBond: string; // bid-中债
bidSubChinaBondValue: number;
chinaBondSubOfr: string; // 中债-ofr
chinaBondSubOfrValue: number;
bidSubCsIndex: string; // bid-中证
bidSubCsIndexValue: number;
csIndexSubOfr: string; // 中证 -ofr
csIndexSubOfrValue: number;
tradeSubChinaBond: string; // 成交-中债
tradeSubCsIndex: string; // 成交-中证
recentYtm: number; // 最近成交价
recentVolumn: number; // 最近成交量
getTableName(): string {
return ExchangeImagePriceTable.tableName;
}
}