| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- /**
- * 查询合同请求
- */
- export type Querytype = 1 | 2 | 3 | 4;
- export interface SellBuyContractReq {
- querytype: Querytype // 查询类型 1-全部 2-待点价 3-履约结算 4-已完成
- usertype?: number // 用户类型 2-机构 7-企业成员
- contractid?: string // 合同ID(SpotContractId)
- }
- /**
- * 查询合同返回
- */
- export interface Ermcp3SellBuyContract {
- accountid: string;//期货账户id
- accountname: string;//账户名称
- attachment: string;//附件
- audittime: string;//审核时间
- biztype: number;//业务类型 1-套保 2-套利
- brandname: string;//品牌名称
- contracctstatus: number;//合同状态- number;
- //:未提交 1:待审核 2:执行中 3:正常完结 4:审核拒绝 5:异常完结 6:已撤回
- contractmargin: number;//合同保证金
- contractno: string;//合同编号
- contracttype: number;//合同类型 1-采购, -1-销售
- convertfactor: number;//标仓系数(品类)
- createtime: string;//创建时间
- currencyid: number;//币种id
- currencyname: string;//币种名称
- daikaiamount: number;//应收(开)票额
- deliveryenddate: string;//交割结束日
- deliverygoodscode: string;//现货品种代码
- deliverygoodsid: number;//现货商品ID
- deliverygoodsname: string;//现货品种名称
- deliverystartdate: string;//交割开始日
- enddate: string;//点价结束日
- enumdicname: string;//单位名称
- goodscode: string;//点价商品代码
- goodsid: number;//点价商品ID
- goodsname: string;//点价商品名称
- invoiceamount: number;//已开票额
- loanamount: number;//贷款总额=已定价额+调整金额
- margin: number;//保证金
- meruserid: number;//跟单员id
- meruserlogincode: string;//跟单员登录代码
- nickname: string;//账户昵称
- payamount: number;//已收付额(收款或付款)
- preinvoiceamount: number;//预收(开)票额
- prepayamount: number;//预收付额
- price: number;//价格
- pricedamount: number;//已定价额
- pricedavg: number;//已点均价
- pricedqty: number;//已定价量
- pricemove: number;//升贴水
- pricetype: number;//定价类型 - 1:一口价 2:点价 3:暂定价
- producttype: number;//产品类型 - 1:标准仓单 2:等标 3:非标
- qty: number;//合同量
- reckonadjustamount: number;//调整金额
- reckonedamount: number;//实际已收付额(已确定额,已收付总额-已退款总额)
- reckonotheramount: number;//其它费用
- reckonrealqty: number;//已确定量
- remark: string;//备注
- saleuserid: number;//业务员id
- saleuserlogincode: string;//业务员登录代码
- spotcontractid: string;//合同ID
- spotgoodsbrandid: number;//现货品牌ID(DGFactoryItem表的ID)
- spotgoodsdesc: string;//商品型号(商品规格)
- startdate: string;//点价开始日
- totalamount: number;//合计总额
- tradeuserid: number;//交易员id
- tradeuserlogincode: string;//交易员登录代码
- tradeusername: string;//交易员名称
- unpayamount: number;//应收付款额(应支付或应收款)
- unpricedqty: number;//未定价量
- unsureqty: number;//未确定量
- userid: number;//机构ID
- wrstandardcode: string;//品类代码
- wrstandardid: number;//品类ID
- wrstandardname: string;//品类名称
- }
|