flat: 暂存

This commit is contained in:
史典卓
2024-11-26 16:43:31 +08:00
parent 834c6c65fe
commit 0a9b0fe0ee
46 changed files with 1895 additions and 392 deletions

38
src/types/Management/list.d.ts vendored Normal file
View File

@@ -0,0 +1,38 @@
declare namespace API.Management {
export interface Manage {
applyNum: number;
companyId: number;
companyName: string;
education: string;
experience: string;
isApply: number;
isCollection: number;
isHot: number;
jobId: number;
jobLocation: string;
jobLocationAreaCode: number;
jobTitle: string;
latitude: number;
longitude: number;
maxSalary: number;
minSalary: number;
postingDate: string;
vacancies: number;
view: number;
}
export interface ListParams {
createTime?: string;
updateTime?: string;
remark?: string;
pageSize?: string;
current?: string;
}
export interface ManagePageResult {
code: number;
msg: string;
total: number;
rows: Array<Manage>;
}
}

30
src/types/area/business.d.ts vendored Normal file
View File

@@ -0,0 +1,30 @@
declare namespace API.AreaBusiness {
export interface Circle {
commercialAreaId: number;
commercialAreaName: string;
latitude: number;
longitude: number;
}
export interface LinePoint {
latitude: number;
longitude: numberl;
lineName: string;
stationId: number;
stationName: string;
}
export interface CircleParams {
createTime?: string;
updateTime?: string;
pageSize?: string;
current?: string;
}
export interface CirclePageResult {
code: number;
msg: string;
total: number;
rows: Array<Line>;
}
}

29
src/types/area/subway.d.ts vendored Normal file
View File

@@ -0,0 +1,29 @@
declare namespace API.AreaSubWay {
export interface Line {
lineId: number;
lineName: string;
subwayStationList: Array<LinePoint>;
}
export interface LinePoint {
latitude: number;
longitude: numberl;
lineName: string;
stationId: number;
stationName: string;
}
export interface LineParams {
createTime?: string;
updateTime?: string;
pageSize?: string;
current?: string;
}
export interface LinePageResult {
code: number;
msg: string;
total: number;
rows: Array<Line>;
}
}

View File

@@ -1,5 +1,5 @@
declare namespace API.Monitor {
declare namespace API.Logs {
export interface Logininfor {
infoId: number;
@@ -27,17 +27,17 @@ declare namespace API.Monitor {
current?: string;
}
export interface LogininforInfoResult {
export interface LogininforInfoResult {
code: number;
msg: string;
data: Logininfor;
}
}
export interface LogininforPageResult {
export interface LogininforPageResult {
code: number;
msg: string;
total: number;
rows: Array<Logininfor>;
}
}
}

View File

@@ -1,5 +1,5 @@
declare namespace API.Monitor {
declare namespace API.Logs {
export interface Mobilelog {
operId: number;

View File

@@ -0,0 +1,43 @@
declare namespace API.Logs {
export interface MobileLogininfor {
infoId: number;
userName: string;
ipaddr: string;
loginLocation: string;
browser: string;
os: string;
status: string;
msg: string;
loginTime: Date;
}
export interface MobileLogininforListParams {
infoId?: string;
userName?: string;
ipaddr?: string;
loginLocation?: string;
browser?: string;
os?: string;
status?: string;
msg?: string;
loginTime?: string;
pageSize?: string;
current?: string;
}
export interface MobileLogininforInfoResult {
code: number;
msg: string;
data: MobileLogininfor;
}
export interface MobileLogininforPageResult {
code: number;
msg: string;
total: number;
rows: Array<MobileLogininfor>;
}
}

View File

@@ -1,5 +1,5 @@
declare namespace API.Monitor {
declare namespace API.Logs {
export interface Operlog {
operId: number;
@@ -41,17 +41,17 @@ declare namespace API.Monitor {
current?: string;
}
export interface OperlogInfoResult {
export interface OperlogInfoResult {
code: number;
msg: string;
data: Operlog;
}
}
export interface OperlogPageResult {
export interface OperlogPageResult {
code: number;
msg: string;
total: number;
rows: Array<Operlog>;
}
}
}