|
|
@@ -160,4 +160,56 @@ export interface ErmcpRole{
|
|
|
roletype :number;//角色类型 - 1- 管理端 2- 交易端
|
|
|
}
|
|
|
|
|
|
+/**
|
|
|
+ * 查询账户管理授信请求
|
|
|
+ */
|
|
|
+export interface QueryAccMgrTaAccountInfoReq {
|
|
|
+ userid: number // 用户ID
|
|
|
+ accountid?: number // 账号id
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * 查询账户管理授信(账户管理/账户设置/授信) 返回
|
|
|
+ */
|
|
|
+export interface ErmcpTaAccountInfo {
|
|
|
+ accountname :string;//机构名称
|
|
|
+ areauserid :number;//所属机构\交易用户ID
|
|
|
+ begindate :string;//开始交易日
|
|
|
+ biztype :number;//业务类型 - 1:套保 2:套利
|
|
|
+ brandname :string;//品牌名称
|
|
|
+ buypreinvoicedamount :number;//采购预收票额(预收票额)
|
|
|
+ buyprepaidamount :number;//采购预付款额(预付货款额)
|
|
|
+ buytodayinvoiceamount :number;//采购今收票额(今收票额)
|
|
|
+ buytodayrefundamount :number;//采购今收退款额(今收退款额)
|
|
|
+ buytodaysettleamount :number;//采购今付款额(今付货款额)
|
|
|
+ buyuninvoicedamount :number;//采购应收票额(应收票额)
|
|
|
+ buyunpaidamount :number;//采购应付款额(应付货款额)
|
|
|
+ currencyid :number;//结算币种ID
|
|
|
+ currencyname :string;//币种名称
|
|
|
+ cycletime :string;//周期时间 月(YYYYMM) 季(YYYYQ) 年(YYYY) 周(YYYYIW) 全(number;
|
|
|
+//)【原值】
|
|
|
+ cycletype :number;//周期类型 - 1:月 2:季 3:年 4:周 5:全报表【原值】
|
|
|
+ deliverygoodscode :string;//现货品种代码
|
|
|
+ deliverygoodsid :number;//现货品种ID
|
|
|
+ deliverygoodsname :string;//现货品种名称
|
|
|
+ enddate :string;//结束交易日
|
|
|
+ reckondate :string;//日照时期(yyyyMMdd)
|
|
|
+ sellpreinvoicedamount :number;//销售预开票额(预开票额)
|
|
|
+ sellprepaidamount :number;//销售预收款额(预收货款额)
|
|
|
+ selltodayinvoiceamount :number;//销售今开票额(今开票额)
|
|
|
+ selltodayrefundamount :number;//销售今付退款额(今付退款额)
|
|
|
+ selltodaysettleamount :number;//销售今收款额(今收货款额)
|
|
|
+ selluninvoicedamount :number;//销售应开票额(应开票额)
|
|
|
+ sellunpaidamount :number;//销售应收款额(应收货款额)
|
|
|
+ spotgoodsbrandid :number;//现货品牌ID
|
|
|
+ todaypaysum :number;//今付款合计
|
|
|
+ todayreceivesum :number;//今收款合计
|
|
|
+ updatetime :string;//更新时间
|
|
|
+ wrfactortypeid :number;//仓单要素类型ID(212+Unix秒时间戳(1number;
|
|
|
+//位)+xxxxxx)
|
|
|
+ wrstandardcode :string;//品类代码
|
|
|
+ wrstandardid :number;//现货商品ID
|
|
|
+ wrstandardname :string;//品类名称
|
|
|
+}
|
|
|
+
|
|
|
|