export interface FormState { // TradeDate: string // string 交易日(yyyyMMdd) ContractNo: string // string 现货合同编号 ContractType: number// int32 现货合同类型-1:采购-1:销售 // UserID: number // uint64 机构ID BuyUserID: number // uint64 采购方ID SellUserID: number // uint64 客户ID // SignDate: string // string 签订日期 ContractAttachment: Uint8Array // bytes 合同附件 ContractMargin: number | null // double 合同保证金 DeliveryGoodsID: number | undefined // uint64 现货品种ID WrStandardID: number | undefined // uint64 现货商品ID // ProductType: number // uint32 产品类型-1:标准仓单2:等标3:非标 ConvertFactor: number | undefined // double 标仓系数 SpotGoodsDesc: string // string 商品型号 PriceType: number // uint32 定价类型-1:一口价2:点价3:暂定价 Qty: number | null // double 数量 Price: number | null// double 价格暂定价[1:一口价、3:暂定价] Amount: number | null// double 金额[1:一口价、3:暂定价] DeliveryStartDate: string// string 交收期(开始) DeliveryEndDate: string // string 交收期(结束) PriceMove: number | null// double 升贴水[2:点价3:暂定价] GoodsID: number | undefined // uint64 点价合约ID-0:为现货,其它为期货商品合约ID[2:点价3:暂定价] // PriceMove: number// double 升贴水[2:点价3:暂定价] // StartDate: string // string 点价开始日期[2:点价3:暂定价] // EndDate: string // string 点价结束日期[2:点价3:暂定价] // PointDesc: string // string 点价备注[2:点价3:暂定价] // DeliveryDesc: string // string 交收方式 MerUserID: number | undefined // uint64 跟单员ID // TradeUserID: number // uint64 交易员ID // PricedQty: number // double 已定价量 // PricedAmount: number // double 已定价金额 SpotGoodsBrandID: number | undefined // uint64 现货品牌ID Remark: string // string 合同备注 SaleUserID: number | undefined // uint64 业务员ID AccountID: number | undefined // uint64 期货账户ID BizType: number // uint32 业务类型 - 1:套保 2:套利 CurrencyID: number | undefined // 结算币种ID }