| 123456789101112131415161718192021222324252627282930313233 |
- export interface GLDWRStandardEx {
- wrstandardid?: number // uint64 型号ID(修改时有值)
- wrstandardname: string // string 型号名称
- unitid: number | undefined// uint64 单位ID
- convertfactor: number// double 标仓系数(接口为3.1及以上版本时传)
- callback: Function;
- }
- // 现货商品品牌数据 0 29 173
- export interface GLDDGFactoryItemEx {
- dgfactoryitemid?: number // uint64 品牌ID(修改时有值)
- dgfactoryitemvalue: string // string 品牌名称
- callback: Function;
- }
- // 现货商品折算配置明细数据 0 29 127
- export interface WRSConvertDetailEx {
- middlegoodsid: number // uint64 套保品种ID(接口为3.1及以下版本时传套保品种ID,否则传期货品种ID)
- unitid: number // uint64 单位ID
- convertratio: number // double 套保系数
- callback: Function;
- }
- export interface FormState {
- deliverygoodscode?: string // string 交割商品代码(新增时有值)
- deliverygoodsname?: string // string 交割商品名称(新增时有值)
- deliverygoodsid?: number// uint64 交割商品id(修改时有值)
- unitid: number | undefined // uint64 单位ID (undefined 用于前端,传入服务时必须是number类型)
- type: number// int32 类型 1 新增 2 修改
- remark: string // string 备注
- gldwrstandards: GLDWRStandardEx[]; // GLDWRStandardEx 现货商品型号数据
- glddgfactoryItems: GLDDGFactoryItemEx[] // GLDDGFactoryItemEx 现货商品品牌数据
- wrsconvertdetails: WRSConvertDetailEx[] // WRSConvertDetailEx 现货商品折算配置明细数据
- }
|