Skip to content

Commit

Permalink
Merge pull request #92 from fcfang123/issue-89
Browse files Browse the repository at this point in the history
feat:增加人员模板操作相关接口 #89
  • Loading branch information
mingshewhe authored Jan 25, 2024
2 parents fa4a7f8 + bf47f6e commit e39ca87
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ ext {
set('lombokVersion', '1.18.10')
set("junitVersion", "5.4.2")

String iamVersion = (System.getProperty("iamVersion") ?: "1.0.46")
String iamVersion = (System.getProperty("iamVersion") ?: "1.0.47")
if (System.getProperty("snapshot") == "true") {
set('iamVersion', iamVersion + "-SNAPSHOT")
} else {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
package com.tencent.bk.sdk.iam.dto.manager.vo;

import com.tencent.bk.sdk.iam.dto.manager.SubjectTemplateInfo;
import lombok.Data;

import java.util.List;

@Data
public class SubjectTemplateVO {
int count;
List<SubjectTemplateInfo> results;
Expand Down

0 comments on commit e39ca87

Please sign in to comment.