feat:问卷管理
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run

This commit is contained in:
dev_ljl 2025-08-15 15:58:57 +08:00
parent d0b4d00f4b
commit 023127fa78
6 changed files with 25 additions and 1 deletions

View File

@ -1,4 +1,7 @@
import type { PageQuery, BaseEntity } from '#/api/common';
import type {
QuestionItemForm
} from "#/api/property/customerService/questionnaire/questionItem/model";
export interface QuestionVO {
/**
@ -57,7 +60,7 @@ export interface QuestionForm extends BaseEntity {
/**
* (123456)
*/
type?: string;
type: string;
/**
* (12)
@ -74,6 +77,21 @@ export interface QuestionForm extends BaseEntity {
*/
sort?: number;
/**
*
*/
questionnaireQuestionItems:QuestionItemForm[]
/**
*
*/
rate?:number;
/**
*
*/
dateTime?:string;
}
export interface QuestionQuery extends PageQuery {

View File

@ -1,4 +1,5 @@
import type { PageQuery, BaseEntity } from '#/api/common';
import type {QuestionForm} from "#/api/property/customerService/questionnaire/question/model";
export interface QuestionnaireVO {
/**
@ -74,6 +75,11 @@ export interface QuestionnaireForm extends BaseEntity {
*/
status?: string;
/**
*
*/
questionnaireQuestions:QuestionForm[];
}
export interface QuestionnaireQuery extends PageQuery {