| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223 |
- /* tslint:disable */
- /* eslint-disable */
- /**
- * Swagger Petstore - OpenAPI 3.0 - version 1.0.27
- *
- * This is a sample Pet Store Server based on the OpenAPI 3.0 specification. You can find out more about
- Swagger at [https://swagger.io](https://swagger.io). In the third iteration of the pet store, we've switched to the design first approach!
- You can now help us improve the API whether it's by making changes to the definition itself or to the code.
- That way, with time, we can improve the API in general, and expose some of the new features in OAS3.
- Some useful links:
- - [The Pet Store repository](https://github.com/swagger-api/swagger-petstore)
- - [The source API definition for the Pet Store](https://github.com/swagger-api/swagger-petstore/blob/master/src/main/resources/openapi.yaml)
- *
- * OpenAPI version: 3.0.4
- *
- * Contact:
- *
- * NOTE: This file is auto generated by the alova's vscode plugin.
- *
- * https://alova.js.org/devtools/vscode
- *
- * **Do not edit the file manually.**
- */
- import type {
- Alova,
- AlovaMethodCreateConfig,
- AlovaGenerics,
- Method,
- } from "alova";
- import type { $$userConfigMap, alovaInstance } from ".";
- import type apiDefinitions from "./apiDefinitions";
- import type { UniappUploadConfig } from "@alova/adapter-uniapp";
- import type { UploadingFileData } from "alova/client";
- type CollapsedAlova = typeof alovaInstance;
- type UserMethodConfigMap = typeof $$userConfigMap;
- type Alova2MethodConfig<Responded> =
- CollapsedAlova extends Alova<
- AlovaGenerics<
- any,
- any,
- infer RequestConfig,
- infer Response,
- infer ResponseHeader,
- infer L1Cache,
- infer L2Cache,
- infer SE
- >
- >
- ? Omit<
- AlovaMethodCreateConfig<
- AlovaGenerics<
- Responded,
- any,
- RequestConfig,
- Response,
- ResponseHeader,
- L1Cache,
- L2Cache,
- SE
- >,
- any,
- Responded
- >,
- "params"
- >
- : never;
- // Extract the return type of transform function that define in $$userConfigMap, if it not exists, use the default type.
- type ExtractUserDefinedTransformed<
- DefinitionKey extends keyof typeof apiDefinitions,
- Default,
- > = DefinitionKey extends keyof UserMethodConfigMap
- ? UserMethodConfigMap[DefinitionKey]["transform"] extends (
- ...args: any[]
- ) => any
- ? Awaited<ReturnType<UserMethodConfigMap[DefinitionKey]["transform"]>>
- : Default
- : Default;
- type Alova2Method<
- Responded,
- DefinitionKey extends keyof typeof apiDefinitions,
- CurrentConfig extends Alova2MethodConfig<any>,
- > =
- CollapsedAlova extends Alova<
- AlovaGenerics<
- any,
- any,
- infer RequestConfig,
- infer Response,
- infer ResponseHeader,
- infer L1Cache,
- infer L2Cache,
- infer SE
- >
- >
- ? Method<
- AlovaGenerics<
- CurrentConfig extends undefined
- ? ExtractUserDefinedTransformed<DefinitionKey, Responded>
- : CurrentConfig["transform"] extends (...args: any[]) => any
- ? Awaited<ReturnType<CurrentConfig["transform"]>>
- : ExtractUserDefinedTransformed<DefinitionKey, Responded>,
- any,
- RequestConfig,
- Response,
- ResponseHeader,
- L1Cache,
- L2Cache,
- SE
- >
- >
- : never;
- interface PaginationResponse<T> {
- orders: any[];
- pages: number;
- records: T;
- searchCount: boolean;
- size: number;
- total: number;
- current?: number; // 如果有当前页码
- }
- interface listData<T> {
- list: T[];
- }
- declare global {
- interface Apis {
- user: {
- loginUser<
- Config extends Alova2MethodConfig<any> & {
- data: {
- username: string;
- password: string;
- };
- },
- >(
- config: Config,
- ): Alova2Method<any, "user.loginUser", Config>;
- };
- sys: {
- selectFundChanges<
- Config extends Alova2MethodConfig<moneyList[]> & {
- data: {
- pageNo: number;
- pageSize: number;
- };
- },
- >(
- config: Config,
- ): Alova2Method<moneyList[], "sys.selectFundChanges", Config>;
- statisticsInfo<Config extends Alova2MethodConfig<money[]> & {}>(
- config: Config,
- ): Alova2Method<money[], "sys.statisticsInfo", Config>;
- staff<
- Config extends Alova2MethodConfig<{ records: sysStaff[] }> & {
- data: {
- page: number;
- pageSize: number;
- };
- },
- >(
- config: Config,
- ): Alova2Method<{ records: sysStaff[] }, "sys.staff", Config>;
- updateStatus<
- Config extends Alova2MethodConfig<any> & {
- data: { status: number; id: string };
- },
- >(
- config: Config,
- ): Alova2Method<any, "sys.updateStatus", Config>;
- userDel<
- Config extends Alova2MethodConfig<any> & {
- params: { id: string };
- },
- >(
- config: Config,
- ): Alova2Method<any, "sys.userDel", Config>;
- findByDeptTree<>(): Alova2Method<any, "sys.findByDeptTree", Config>;
- rolelist<>(): Alova2Method<any, "sys.rolelist", Config>;
- userAdd<
- Config extends Alova2MethodConfig<any> & {
- data: userAdd;
- },
- >(
- config: Config,
- ): Alova2Method<any, "sys.userAdd", Config>;
- queryById<
- Config extends Alova2MethodConfig<any> & {
- data: { id: string };
- },
- >(
- config: Config,
- ): Alova2Method<any, "sys.queryById", Config>;
- userEdit<
- Config extends Alova2MethodConfig<any> & {
- data: userAdd;
- },
- >(
- config: Config,
- ): Alova2Method<any, "sys.userEdit", Config>;
- getCurrentUserDeparts<
- Config extends Alova2MethodConfig<listData<deptart>> & {},
- >(
- config: Config,
- ): Alova2Method<listData<deptart>, "sys.getCurrentUserDeparts", Config>;
- upload<
- Config extends Alova2MethodConfig<any> & {
- data: {
- name: string;
- filePath: string;
- };
- },
- >(
- config: Config,
- ): Alova2Method<any, "sys.upload", Config>;
- };
- app: {
- repealVerifyRecord<
- Config extends Alova2MethodConfig<any> & {
- params: {
- appIsinId: string;
- };
- },
- >(
- config: Config,
- ): Alova2Method<any, "app.repealVerifyRecord", Config>;
- pageAppIsinVerifyRecords<
- Config extends Alova2MethodConfig<
- PaginationResponse<AppIsinVerifyVO[]>
- > & {
- params: {
- pageNo: number;
- pageSize: number;
- };
- },
- >(
- config: Config,
- ): Alova2Method<
- PaginationResponse<AppIsinVerifyVO[]>,
- "app.pageAppIsinVerifyRecords",
- Config
- >;
- classPostpone<
- Config extends Alova2MethodConfig<any> & {
- data: classPostpone;
- },
- >(
- config: Config,
- ): Alova2Method<any, "app.classPostpone", Config>;
- getClassPostponeUsers<
- Config extends Alova2MethodConfig<FamilyUserVO[]> & {
- params: { coursePriceRulesId: string };
- },
- >(
- config: Config,
- ): Alova2Method<FamilyUserVO[], "app.getClassPostponeUsers", Config>;
- appCategory<Config extends Alova2MethodConfig<any>>(): Alova2Method<
- any,
- "app.appCategory",
- Config
- >;
- /**
- * 拍照验课
- * @param config
- */
- getPageCourse<
- Config extends Alova2MethodConfig<
- PaginationResponse<GetPageCourseRes[]>
- > & {
- data: { pageNo: number; pageSize: number; orgCode: string };
- },
- >(
- config: Config,
- ): Alova2Method<
- PaginationResponse<GetPageCourseRes[]>,
- "app.getPageCourse",
- Config
- >;
- /**
- * 获取课程详情
- * @param config
- */
- getCourseInfo<
- Config extends Alova2MethodConfig<VerifyCourseInfoDTO[]> & {
- pathParams: { courseId };
- },
- >(
- config: Config,
- ): Alova2Method<VerifyCourseInfoDTO[], "app.getCourseInfo", Config>;
- /**
- * 查询补课补课表
- */
- queryMakeUpClassTable<
- Config extends Alova2MethodConfig<AppCoursesPriceRules> & {},
- >(
- config: Config,
- ): Alova2Method<
- AppCoursesPriceRules,
- "app.queryMakeUpClassTable",
- Config
- >;
- /**
- * 扫码核销详情
- * @param config
- */
- scanCodeQueryOrder<
- Config extends Alova2MethodConfig<ScanCodeQueryOrderVO> & {
- params: {
- orderId: string;
- };
- },
- >(
- config: Config,
- ): Alova2Method<ScanCodeQueryOrderVO, "app.scanCodeQueryOrder", Config>;
- /**
- * 确认核销
- * @param config
- */
- scanCodeVerification<
- Config extends Alova2MethodConfig<any> & {
- data: string[];
- },
- >(
- config: Config,
- ): Alova2Method<any, "app.scanCodeVerification", Config>;
- /**
- *
- * @param config
- * 评价管理
- */
- evaluateList<
- Config extends Alova2MethodConfig<PaginationResponse<Evaluate[]>> & {
- params: {
- pageNo: number;
- pageSize: number;
- };
- },
- >(
- config: Config,
- ): Alova2Method<
- PaginationResponse<Evaluate[]>,
- "app.evaluateList",
- Config
- >;
- evaluateEdit<
- Config extends Alova2MethodConfig<any> & {
- data: Evaluate;
- },
- >(
- config: Config,
- ): Alova2Method<any, "app.evaluateEdit", Config>;
- /**
- * 补课课表详情
- * @param config
- */
- queryListByCoursesId<
- Config extends Alova2MethodConfig<webMakeClass[]> & {
- params: {
- coursesType: number;
- id: string;
- };
- },
- >(
- config: Config,
- ): Alova2Method<webMakeClass[], "app.queryListByCoursesId", Config>;
- editPriceRules<
- Config extends Alova2MethodConfig<any> & {
- data: webMakeClass[];
- },
- >(
- config: Config,
- ): Alova2Method<any, "app.editPriceRules", Config>;
- /**
- * 消息通知
- * @param config
- */
- getMsg<Config extends Alova2MethodConfig<sysMsg[]> & {}>(
- config: Config,
- ): Alova2Method<sysMsg[], "app.getMsg", Config>;
- getMsgInfo<
- Config extends Alova2MethodConfig<sysMsg> & {
- params: {
- id: string;
- };
- },
- >(
- config: Config,
- ): Alova2Method<sysMsg, "app.getMsgInfo", Config>;
- queryKongfuZone<Config extends Alova2MethodConfig<sysRole[]> & {}>(
- config: Config,
- ): Alova2Method<sysRole[], "app.queryKongfuZone", Config>;
- courseQueryUsers<
- Config extends Alova2MethodConfig<AppCoursesVerificationRecord[]> & {
- data: {
- coursePriceRulesId: string;
- verifyStatus: number;
- orPostpone: number;
- };
- },
- >(
- config: Config,
- ): Alova2Method<
- AppCoursesVerificationRecord[],
- "app.courseQueryUsers",
- Config
- >;
- courseUploadImage<
- Config extends Alova2MethodConfig<any> & {
- data: {
- id: string;
- verifyImage: string;
- }[];
- },
- >(
- config: Config,
- ): Alova2Method<any, "app.courseUploadImage", Config>;
- getFamilyMembersByName<
- Config extends Alova2MethodConfig<FamilyMembers[]> & {
- params: {
- name: string;
- courseId: string;
- };
- },
- >(
- config: Config,
- ): Alova2Method<FamilyMembers[], "app.getFamilyMembersByName", Config>;
- temporaryCourse<
- Config extends Alova2MethodConfig<any> & {
- data: {
- coursePriceRulesId: string;
- userIds: string[];
- };
- },
- >(
- config: Config,
- ): Alova2Method<any, "app.temporaryCourse", Config>;
- };
- }
- var Apis: Apis;
- }
- export interface moneyList {
- amount_after: number;
- amount_before: number;
- amount_type: string;
- change_amount: number;
- change_reason: string;
- create_time: string;
- id: string;
- income_expense_type: string;
- }
- export interface money {
- /**
- * 可用余额(元)
- */
- available: number;
- /**
- *已到账(元)
- */
- received: number;
- /**
- * 待结算(元)
- */
- toBeSettled: number;
- }
- /**
- * org.jeecg.modules.app.vo.AppIsinVerifyVO
- *
- * AppIsinVerifyVO
- */
- export interface AppIsinVerifyVO {
- /**
- * 时间段
- */
- frameTimeStr?: string;
- /**
- * ID
- */
- id: string;
- /**
- * 价格/元
- */
- OriginalPrice?: number;
- originalPrice?: number;
- /**
- * 商品图片
- */
- productImage?: string;
- /**
- * 商品名称
- */
- productName?: string;
- /**
- * 备注
- */
- remark?: string;
- /**
- * 券号
- */
- ticketNo?: string;
- /**
- * 日期
- */
- useDateStr?: string;
- /**
- * 使用时间
- */
- useTime?: string;
- [property: string]: any;
- /**
- * 0-学校 1-包场 2-无固定场 3-个人赛 4-团队赛 5-课程
- */
- orderType: number;
- }
- /**
- * ClassPostponeForm
- */
- export interface postponeRequest {
- /**
- * 所选补课课时ID
- */
- coursePriceRulesId?: string;
- /**
- * 用户列表
- */
- familyUserVOList?: FamilyUserVO[];
- /**
- * 订单ID
- */
- orderId?: string;
- /**
- * 延课原因
- */
- postponeReason?: string;
- /**
- * 原课时id
- */
- priceRulesId?: string;
- [property: string]: any;
- }
- /**
- * org.jeecg.modules.app.vo.FamilyUserVO
- *
- * FamilyUserVO
- */
- export interface FamilyUserVO {
- /**
- * 用户ID
- */
- familyUserId: string;
- /**
- * 用户人脸图片
- */
- familyUserImage?: string;
- /**
- * 用户名称
- */
- familyUserName?: string;
- [property: string]: any;
- }
- /**
- * FamilyMembers
- */
- export interface FamilyMembers {
- /**
- * 创建时间
- */
- createTime?: string;
- /**
- * 删除标志;删除状态(0-正常,1-已删除)
- */
- delFlag?: number;
- /**
- * 姓名
- */
- fullName?: string;
- /**
- * 主键
- */
- id: string;
- /**
- * 身份证反面照
- */
- idCardBackImg?: string;
- /**
- * 身份证正面照
- */
- idCardFrontImg?: string;
- /**
- * 身份证号
- */
- identityCard?: string;
- /**
- * 手机号
- */
- phone?: string;
- psnId?: string;
- /**
- * 身份证反面照
- * 实名认证照片
- */
- realNameImg?: string;
- /**
- * 实名状态 0-未实名 ;1-已实名
- */
- realNameStatus?: number;
- /**
- * 修改时间
- */
- updateTime?: string;
- /**
- * 用户编号
- */
- userId?: string;
- /**
- * 实名状态 0-未实名 ;1-已实名
- * 用户类型0-本人;1-家人
- */
- userType?: number;
- [property: string]: any;
- }
- /**
- * AppCoursesVerificationRecord
- */
- export interface AppCoursesVerificationRecord {
- /**
- * 上课时间
- */
- coursesEndTime?: string;
- /**
- * 课程ID
- */
- coursesId?: string;
- /**
- * 课时名称
- */
- coursesName?: string;
- /**
- * 课程小节ID
- */
- coursesPriceRuleId?: string;
- /**
- * 上课时间
- */
- coursesStartTime?: string;
- /**
- * 课程类型(0-正常课 1-补课)
- */
- coursesType?: number;
- /**
- * 创建人;创建人
- */
- createBy?: string;
- /**
- * 创建时间;创建时间
- */
- createTime?: string;
- /**
- * 删除标志;删除状态(0-正常,1-已删除)
- */
- delFlag?: number;
- /**
- * id
- */
- id?: string;
- /**
- * 订单编号
- */
- orderCode?: string;
- /**
- * 订单id
- */
- orderId?: string;
- /**
- * id
- * 部门编号
- */
- orgCode?: string;
- /**
- * 是否延课(0-未延课 1-已延课)
- */
- orPostpone?: number;
- /**
- * 延课原因
- */
- postponeReason?: string;
- /**
- * 系统状态;状态(0-正常,1-冻结)
- */
- status?: number;
- /**
- * 更新人;更新人
- */
- updateBy?: string;
- /**
- * 更新时间;更新时间
- */
- updateTime?: string;
- /**
- * 使用人ID
- */
- useUserId?: string;
- /**
- * 使用人人脸照片
- */
- useUserImage?: string;
- /**
- * 使用人名称
- */
- useUserName?: string;
- /**
- * 核验照片
- */
- verifyImage?: string;
- /**
- * 核销状态(0-未核销 1-已核销)
- */
- verifyStatus?: number;
- /**
- * 核验时间
- */
- verifyTime?: string;
- /**
- * 核验人ID
- */
- verifyUserId?: string;
- /**
- * 核验人名称
- */
- verifyUserName?: string;
- [property: string]: any;
- }
- export interface sysMsg {
- id: string;
- titile: string;
- imgUrl: string;
- sender: string;
- sendTime: string;
- msgContent: string;
- }
- export interface sysRole {
- id: string;
- name: string;
- iconUrl: null;
- route: string;
- orderNumber: number;
- izShow: string;
- delFlag: number;
- roleCode: string;
- }
- export interface sysStaff {
- id: string;
- username: string;
- realname: string;
- status: 0;
- departName: string;
- createTime: string;
- }
- export interface userAdd {
- id: string;
- username: string;
- backgroundImg: string;
- realname: string;
- status: string;
- password: string;
- selectedroles: string;
- selecteddeparts: string;
- orgCode: string;
- trainingPrograms: string;
- teachingPhilosophy: string;
- excelMsg: string;
- certificateInnocence: string;
- healthy: string;
- honor: string;
- }
- export interface GetPageCourseRes {
- /**
- * 课程ID
- */
- appCourseId?: string;
- /**
- * 课时数
- */
- classNum?: number;
- /**
- * 封面
- */
- cover?: string;
- /**
- * 结束时间
- */
- endTime?: string;
- /**
- * 产品名称
- */
- name?: string;
- /**
- * 上课地址
- */
- siteAddress?: string;
- /**
- * 开始时间
- */
- startTime?: string;
- /**
- * 教练id(关联用户表)
- */
- userId?: string;
- [property: string]: any;
- }
- export interface deptart {
- address?: string;
- createBy?: string;
- createTime?: string;
- delFlag?: string;
- departName?: string;
- departNameAbbr?: string;
- departNameEn?: string;
- departOrder?: number;
- description?: string;
- dingIdentifier?: string;
- directorUserIds?: string;
- fax?: string;
- id: string;
- izLeaf?: number;
- memo?: string;
- mobile?: string;
- oldDirectorUserIds?: string;
- orgCategory?: string;
- orgCode: string;
- orgType?: string;
- parentId?: string;
- qywxIdentifier?: string;
- status: string;
- tenantId?: number;
- }
- export interface VerifyCourseInfoDTO {
- coursesId?: string;
- /**
- * 课程类型(0-正常 1-补课)
- */
- coursesType?: number;
- /**
- * 结束时间
- */
- endTime?: string;
- /**
- * id
- */
- id?: string;
- /**
- * 名称
- */
- name?: string;
- /**
- * 是否今日
- */
- orToday?: boolean;
- /**
- * 延课人数
- */
- postponeNum?: number;
- /**
- * 开始时间
- */
- startTime?: string;
- /**
- * 上课人数
- */
- totalNum?: number;
- /**
- * 未核销人数
- */
- unwrittenOffNum?: number;
- /**
- * 已核销人数
- */
- writtenOffNum?: number;
- /**
- * 是否完成
- */
- orDone: boolean;
- }
- /**
- * 课程补课课表
- */
- export interface AppCoursesPriceRules {
- /**
- * 课时状态
- * 课时状态(0-正常 1-延期)
- */
- classStatus?: number;
- /**
- * 课程id
- */
- coursesId?: string;
- /**
- * 结束时间
- * 课程类型(0-正常 1-补课)
- */
- coursesType?: number;
- /**
- * 创建人;创建人
- */
- createBy?: string;
- /**
- * 创建时间;创建时间
- */
- createTime?: string;
- /**
- * 删除标志;删除状态(0-正常,1-已删除)
- */
- delFlag?: number;
- /**
- * 结束时间
- */
- endTime?: string;
- /**
- * id
- */
- id?: string;
- /**
- * 名称
- */
- name?: string;
- /**
- * 部门id
- */
- orgCode?: string;
- /**
- * 乐观锁
- */
- revision?: number;
- /**
- * 排序
- */
- sort?: number;
- /**
- * 开始时间
- */
- startTime?: string;
- /**
- * 系统状态;状态(0-正常,1-冻结)
- */
- status?: number;
- /**
- * 租户id
- */
- tenantId?: string;
- /**
- * 更新人;更新人
- */
- updateBy?: string;
- /**
- * 更新时间;更新时间
- */
- updateTime?: string;
- [property: string]: any;
- }
- /**
- * 扫码核销
- */
- export interface ScanCodeQueryOrderVO {
- /**
- * 商品数量
- */
- amount?: number;
- /**
- * 子订单信息
- */
- appOrderProInfoVerifyVOS?: AppOrderProInfoVerifyVO[];
- /**
- * 比赛类型 0-个人 1-团队
- */
- gameType?: number;
- /**
- * 商品价格
- */
- price?: number;
- /**
- * 商品图片
- */
- productImage?: string;
- /**
- * 商品名称
- */
- productName?: string;
- /**
- * 场馆
- */
- siteName?: string;
- [property: string]: any;
- }
- /**
- * org.jeecg.modules.app.vo.AppOrderProInfoVerifyVO
- *
- * AppOrderProInfoVerifyVO
- */
- export interface AppOrderProInfoVerifyVO {
- /**
- * 子订单商品
- */
- appOrderProInfo: AppOrderProInfo;
- /**
- * 券ID
- */
- isinId?: string;
- /**
- * 券状态 0-待使用 1-已使用 2-已失效
- */
- isinStatus?: number;
- [property: string]: any;
- }
- /**
- * 子订单商品
- *
- * AppOrderProInfo
- */
- export interface AppOrderProInfo {
- /**
- * 地点
- */
- address?: string;
- /**
- * 售后状态
- */
- afterSaleStatus?: number;
- /**
- * 创建人;创建人
- */
- createBy?: string;
- /**
- * 创建时间;创建时间
- */
- createTime?: string;
- /**
- * 删除标志;删除状态(0-正常,1-已删除)
- */
- delFlag?: number;
- /**
- * 使用人ID
- */
- familyUserId?: string;
- /**
- * 时间段
- */
- frameTimeStr?: string;
- /**
- * 比赛日期
- */
- gameTimeStr?: string;
- /**
- * id
- */
- id?: string;
- /**
- * 订单id
- * 订单编号
- */
- orderCode?: string;
- /**
- * 订单id
- */
- orderId?: string;
- /**
- * 订单状态0-待付款 1-待使用 2-已使用 3-已到期 4-已取消 5-退款中 6已退款
- */
- orderStatus?: number;
- /**
- * 是否免费试听课(0-否 1-是)
- */
- orFreePro?: number;
- /**
- * 原价/元
- */
- originalPrice?: number;
- /**
- * 实际价格/元
- */
- price?: number;
- /**
- * 产品id;场地/赛事/课程
- */
- productId?: string;
- /**
- * 商品图片
- */
- productImage?: string;
- /**
- * 商品名称
- */
- productName?: string;
- /**
- * 数量
- */
- quantity?: number;
- /**
- * 系统状态;状态(0-正常,1-冻结)
- */
- status?: number;
- /**
- * 券号
- */
- ticketNo?: string;
- /**
- * 商品类型(0-学校 1-包场 2-无固定场 3-个人赛 4-团队赛 5-课程 6-保险)
- */
- type?: number;
- /**
- * 更新人;更新人
- */
- updateBy?: string;
- /**
- * 更新时间;更新时间
- */
- updateTime?: string;
- /**
- * 日期
- */
- useDateStr?: string;
- /**
- * 使用人
- */
- userName?: string;
- /**
- * 手机号
- */
- userPhone?: string;
- [property: string]: any;
- }
- export interface Evaluate {
- id: string;
- /**
- * 部门编码
- */
- orgCode: string;
- /** 发布单位名称
- *
- */
- departName: string;
- /**
- * 场地/地点
- */
- address: string;
- /**
- * 用户
- */
- username: string;
- /**
- * 用户手机号
- */
- phone: string;
- /**
- * 头像
- */
- avatar: string;
- /**
- * 评分
- */
- score: number;
- /**
- * 评价内容
- */
- evaluateContent: string;
- /**
- * 图片
- */
- images: string;
- /**
- * 审核状态;0待审核 1审核通过 2审核不通过
- */
- checkStatus: number;
- /**
- * 回复状态 0-未回复 1-已回复
- */
- replyStatus: number;
- /**
- * 回复内容
- */
- replyContent: string;
- /**
- * 回复时间
- */
- replyTime: string;
- /**
- * 业务类型;0场地 1课程
- */
- type: number;
- createTime: string;
- updateTime: string;
- /** 图片列表集合
- *
- */
- imageList: string[];
- isAnonymous: number;
- }
- export interface webMakeClass {
- id?: string;
- coursesId: string;
- name: string;
- startTime: string;
- endTime: string;
- }
|