5.1日 暂定 水电表管理

This commit is contained in:
Zy
2026-05-01 18:36:37 +08:00
parent 7b89144dd4
commit a8bb4e66ad
103 changed files with 1071 additions and 533 deletions

View File

@@ -17,10 +17,12 @@ export interface UserQuery extends PageQuery {
userName?: string;
nickName?: string;
phonenumber?: string;
// villageIds?: string[] | number[];
villageIds?: string;
status?: string;
deptId?: string | number;
roleId?: string | number;
userIds?: string | number | (string | number)[] | undefined;
userIds?: string | number | (string | number)[] | undefined;
}
/**
@@ -48,6 +50,7 @@ export interface UserVO extends BaseEntity {
postIds: any;
roleId: any;
admin: boolean;
villageIds: string;
}
/**
@@ -59,6 +62,8 @@ export interface UserForm {
deptId?: number;
userName: string;
nickName?: string;
// villageIds: string[] | number[];
villageIds: string;
password: string;
phonenumber?: string;
email?: string;