check_pb.ts 317 B

1234567891011121314
  1. export interface CheckRequest{
  2. /** 内容 (url或者文本) */
  3. content?:string;
  4. /** 审核的等级 (0是最高级) */
  5. level?:number;
  6. openId?:string;
  7. appId?:string;
  8. /** 是否是小程序用户 */
  9. isMiniProgram?:boolean;
  10. }
  11. export interface CheckReply{
  12. isUnPass?:boolean;
  13. }