-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #65 from fcfang123/issue-64
feat:增加itsm审批单据内容信息 #64
- Loading branch information
Showing
3 changed files
with
25 additions
and
1 deletion.
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
15 changes: 15 additions & 0 deletions
15
src/main/java/com/tencent/bk/sdk/iam/dto/itsm/ItsmColumn.java
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,13 +1,28 @@ | ||
package com.tencent.bk.sdk.iam.dto.itsm; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
import lombok.Builder; | ||
import lombok.Data; | ||
|
||
@Data | ||
@Builder | ||
public class ItsmColumn { | ||
/** | ||
* 列标识 | ||
* */ | ||
private String key; | ||
/** | ||
* 列名称 | ||
* */ | ||
private String name; | ||
/** | ||
* 列类型:text、url | ||
* */ | ||
private String type; | ||
/** | ||
* 是否为抽屉模式 | ||
* */ | ||
@JsonProperty("is_iframe") | ||
private Boolean iframe; | ||
private Integer width; | ||
} |