interface.ts 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /**
  2. * 查询合同请求
  3. */
  4. export type Querytype = 1 | 2 | 3 | 4;
  5. export interface SellBuyContractReq {
  6. querytype: Querytype // 查询类型 1-全部 2-待点价 3-履约结算 4-已完成
  7. usertype?: number // 用户类型 2-机构 7-企业成员
  8. contractid?: string // 合同ID(SpotContractId)
  9. }
  10. /**
  11. * 查询合同返回
  12. */
  13. export interface Ermcp3SellBuyContract {
  14. accountid: string;//期货账户id
  15. accountname: string;//账户名称
  16. attachment: string;//附件
  17. audittime: string;//审核时间
  18. biztype: number;//业务类型 1-套保 2-套利
  19. brandname: string;//品牌名称
  20. contracctstatus: number;//合同状态- number;
  21. //:未提交 1:待审核 2:执行中 3:正常完结 4:审核拒绝 5:异常完结 6:已撤回
  22. contractmargin: number;//合同保证金
  23. contractno: string;//合同编号
  24. contracttype: number;//合同类型 1-采购, -1-销售
  25. convertfactor: number;//标仓系数(品类)
  26. createtime: string;//创建时间
  27. currencyid: number;//币种id
  28. currencyname: string;//币种名称
  29. daikaiamount: number;//应收(开)票额
  30. deliveryenddate: string;//交割结束日
  31. deliverygoodscode: string;//现货品种代码
  32. deliverygoodsid: number;//现货商品ID
  33. deliverygoodsname: string;//现货品种名称
  34. deliverystartdate: string;//交割开始日
  35. enddate: string;//点价结束日
  36. enumdicname: string;//单位名称
  37. goodscode: string;//点价商品代码
  38. goodsid: number;//点价商品ID
  39. goodsname: string;//点价商品名称
  40. invoiceamount: number;//已开票额
  41. loanamount: number;//贷款总额=已定价额+调整金额
  42. margin: number;//保证金
  43. meruserid: number;//跟单员id
  44. meruserlogincode: string;//跟单员登录代码
  45. nickname: string;//账户昵称
  46. payamount: number;//已收付额(收款或付款)
  47. preinvoiceamount: number;//预收(开)票额
  48. prepayamount: number;//预收付额
  49. price: number;//价格
  50. pricedamount: number;//已定价额
  51. pricedavg: number;//已点均价
  52. pricedqty: number;//已定价量
  53. pricemove: number;//升贴水
  54. pricetype: number;//定价类型 - 1:一口价 2:点价 3:暂定价
  55. producttype: number;//产品类型 - 1:标准仓单 2:等标 3:非标
  56. qty: number;//合同量
  57. reckonadjustamount: number;//调整金额
  58. reckonedamount: number;//实际已收付额(已确定额,已收付总额-已退款总额)
  59. reckonotheramount: number;//其它费用
  60. reckonrealqty: number;//已确定量
  61. remark: string;//备注
  62. saleuserid: number;//业务员id
  63. saleuserlogincode: string;//业务员登录代码
  64. spotcontractid: string;//合同ID
  65. spotgoodsbrandid: number;//现货品牌ID(DGFactoryItem表的ID)
  66. spotgoodsdesc: string;//商品型号(商品规格)
  67. startdate: string;//点价开始日
  68. totalamount: number;//合计总额
  69. tradeuserid: number;//交易员id
  70. tradeuserlogincode: string;//交易员登录代码
  71. tradeusername: string;//交易员名称
  72. unpayamount: number;//应收付款额(应支付或应收款)
  73. unpricedqty: number;//未定价量
  74. unsureqty: number;//未确定量
  75. userid: number;//机构ID
  76. wrstandardcode: string;//品类代码
  77. wrstandardid: number;//品类ID
  78. wrstandardname: string;//品类名称
  79. }