Skip to content

Commit

Permalink
bug:研发商店组件审核发布时录入T_STORE_RELEASE表的首次发布人有误 #11366
Browse files Browse the repository at this point in the history
  • Loading branch information
Kzhou991 committed Jan 10, 2025
1 parent 079a52f commit 7f87bc8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ data class AtomReleaseRequest(
val repositoryHashId: String? = null,
@get:Schema(title = "代码库分支")
val branch: String? = null,
@get:Schema(title = "创建人")
val creator: String? = null,
@get:Schema(title = "发布人")
val publisher: String? = null,

)
Original file line number Diff line number Diff line change
Expand Up @@ -1060,7 +1060,7 @@ abstract class AtomReleaseServiceImpl @Autowired constructor() : AtomReleaseServ
storeReleaseCreateRequest = StoreReleaseCreateRequest(
storeCode = atomCode,
storeType = StoreTypeEnum.ATOM,
latestUpgrader =atomReleaseRequest.creator?:userId,
latestUpgrader =atomReleaseRequest.publisher?:userId,
latestUpgradeTime = pubTime
)
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ class OpAtomServiceImpl @Autowired constructor(
releaseType = releaseType,
repositoryHashId = atom.repositoryHashId,
branch = atom.branch,
creator = atom.creator
publisher = atom.publisher
)
)
} else {
Expand Down

0 comments on commit 7f87bc8

Please sign in to comment.