This commit is contained in:
2025-06-18 16:50:58 +08:00
parent 1262d4c745
commit 06a0e3649d
46 changed files with 3048 additions and 545 deletions

View File

@@ -1,11 +1,6 @@
import type { PageQuery, BaseEntity } from '#/api/common';
export interface CommunityVO {
/**
* 主键id
*/
id: string | number;
/**
* 社区名称
*/
@@ -61,11 +56,6 @@ export interface CommunityVO {
*/
orgCode: string;
/**
* 数据状态1有效0无效
*/
dataState: number;
}
export interface CommunityForm extends BaseEntity {
@@ -129,11 +119,6 @@ export interface CommunityForm extends BaseEntity {
*/
orgCode?: string;
/**
* 数据状态1有效0无效
*/
dataState?: number;
}
export interface CommunityQuery extends PageQuery {