PtlHcSell.ts 302 B

1234567891011121314151617181920212223242526
  1. import { HcInfoGeziInfo } from "./PtlHcInfo";
  2. /**
  3. * 请求接口 出售
  4. */
  5. export interface ReqHcSell {
  6. gzid:string
  7. }
  8. /**
  9. * 返回信息
  10. */
  11. export interface ResHcSell {
  12. list:{
  13. [gzid: string]: HcInfoGeziInfo;
  14. },
  15. items:number[][]
  16. }
  17. export const conf = {
  18. connet: "ws"
  19. }