-
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.
feat: add source type,source for company tag
- Loading branch information
1 parent
1b1508a
commit 053f402
Showing
37 changed files
with
502 additions
and
228 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
import { TAG_SOURCE_TYPE_CUSTOM } from "../../index"; | ||
export class CompanyTagBO{ | ||
companyName; | ||
tags; | ||
sourceType = TAG_SOURCE_TYPE_CUSTOM; | ||
source = null; | ||
updateDatetime; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
export class CompanyTagBatchAddOrUpdateBO{ | ||
items; | ||
overrideUpdateDatetime; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
export class CompanyTagExportBO { | ||
companyIds; | ||
source; | ||
startDatetimeForUpdate; | ||
endDatetimeForUpdate; | ||
isPublic = 1; | ||
} |
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 |
---|---|---|
|
@@ -3,4 +3,5 @@ export class JobTagExportBO { | |
source; | ||
startDatetimeForUpdate; | ||
endDatetimeForUpdate; | ||
isPublic = 1; | ||
} |
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,24 +1,32 @@ | ||
export class CompanyTag { | ||
/** | ||
* 编号 | ||
*/ | ||
companyTagId; | ||
/** | ||
* 公司编号 | ||
*/ | ||
companyId; | ||
/** | ||
* 公司名 | ||
*/ | ||
companyName; | ||
/** | ||
* 标签编号 | ||
*/ | ||
tagId; | ||
/** | ||
* 排列序号 | ||
*/ | ||
seq; | ||
createDatetime; | ||
updateDatetime; | ||
} | ||
/** | ||
* 编号 | ||
*/ | ||
companyTagId; | ||
/** | ||
* 公司编号 | ||
*/ | ||
companyId; | ||
/** | ||
* 公司名 | ||
*/ | ||
companyName; | ||
/** | ||
* 标签编号 | ||
*/ | ||
tagId; | ||
/** | ||
* 排列序号 | ||
*/ | ||
seq; | ||
createDatetime; | ||
updateDatetime; | ||
/** | ||
* 来源类型,0:CUSTOM;1:PLATFORM | ||
*/ | ||
sourceType; | ||
/** | ||
* CUSTOM:null代表本地应用程序,【其他值】代表其他用户;PLATFORM:代表第三方平台; | ||
*/ | ||
source; | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
export class JobTagExportDTO{ | ||
companyId; | ||
tagNameArray; | ||
updateDatetime; | ||
} |
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
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
File renamed without changes.
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
Oops, something went wrong.