PtlInfo.ts 317 B

12345678910111213141516
  1. import { BaseRequest, BaseResponse } from '../base';
  2. export interface ReqInfo extends BaseRequest {
  3. // 定义请求参数
  4. // 例如: name: string;
  5. content:string
  6. }
  7. export interface ResInfo extends BaseResponse {
  8. // 定义返回字段
  9. ret: string;
  10. }
  11. export const conf = {
  12. needLogin: true,
  13. }