xq feat:"完成了项目列表新增的功能"

This commit is contained in:
2025-07-03 11:26:35 +08:00
parent c355fecb9e
commit 2fce7690c5
2 changed files with 39 additions and 14 deletions

View File

@ -1,13 +1,18 @@
export interface NbqVO {
/**
* 自增ID
* 序号
*/
nbqId: string | number;
/**
* 项目简介
*/
projectBrief: string;
/**
* 项目地址
*/
adress: string;
address: string;
/**
* 项目负责人
@ -38,14 +43,19 @@ export interface NbqVO {
export interface NbqForm extends BaseEntity {
/**
* 自增ID
* 序号
*/
nbqId?: string | number;
/**
* 项目简介
*/
projectBrief?: string;
/**
* 项目地址
*/
adress?: string;
address?: string;
/**
* 项目负责人
@ -76,10 +86,15 @@ export interface NbqForm extends BaseEntity {
export interface NbqQuery extends PageQuery {
/**
* 项目简介
*/
projectBrief?: string;
/**
* 项目地址
*/
adress?: string;
address?: string;
/**
* 项目负责人