-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(sidepanel): admin table sort by location and address
- Loading branch information
1 parent
584e7f3
commit 2668c2b
Showing
4 changed files
with
56 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ | |
### ⭐ Added | ||
|
||
1. (SidePanel)新增统计图表:根据指定搜索条件统计薪酬区间职位数。 | ||
2. (SidePanel)新增管理页面搜索表格查询:地区,地址。 | ||
|
||
### ✏️ Changed | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,17 @@ | ||
import { PageBO } from "./pageBO"; | ||
|
||
export class SearchJobBO extends PageBO{ | ||
|
||
jobName; | ||
jobCompanyName; | ||
startDatetime; | ||
endDatetime; | ||
firstPublishStartDatetime; | ||
firstPublishEndDatetime; | ||
orderByColumn; | ||
/** | ||
* ASC,DESC | ||
*/ | ||
orderBy; | ||
} | ||
export class SearchJobBO extends PageBO { | ||
jobName; | ||
jobCompanyName; | ||
startDatetime; | ||
endDatetime; | ||
firstPublishStartDatetime; | ||
firstPublishEndDatetime; | ||
jobLocationName; | ||
jobAddress; | ||
orderByColumn; | ||
/** | ||
* ASC,DESC | ||
*/ | ||
orderBy; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters