1234567891011121314151617181920212223242526 |
- import { HcInfoGeziInfo } from "./PtlHcInfo";
- /**
- * 请求接口 出售
- */
- export interface ReqHcSell {
- gzid:string
- }
- /**
- * 返回信息
- */
- export interface ResHcSell {
- list:{
- [gzid: string]: HcInfoGeziInfo;
- },
- items:number[][]
- }
- export const conf = {
- connet: "ws"
- }
|