-
Notifications
You must be signed in to change notification settings - Fork 0
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 #184 from dream11/development
Development to main
- Loading branch information
Showing
10 changed files
with
344 additions
and
50 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 |
---|---|---|
@@ -1,6 +1,20 @@ | ||
package envtype | ||
|
||
type EnvType struct { | ||
Id int64 `yaml:"id,omitempty" json:"id,omitempty"` | ||
CreatedBy string `yaml:"createdBy,omitempty" json:"createdBy,omitempty"` | ||
UpdatedBy string `yaml:"updatedBy,omitempty" json:"updatedBy,omitempty"` | ||
CreatedAt string `yaml:"createdAt,omitempty" json:"createdAt,omitempty"` | ||
UpdatedAt string `yaml:"updatedAt,omitempty" json:"updatedAt,omitempty"` | ||
Name string `yaml:"name,omitempty" json:"name,omitempty"` | ||
Strict bool `yaml:"strict,omitempty" json:"strict,omitempty"` | ||
} | ||
|
||
// ListResponse interface | ||
type ListTypeResponse struct { | ||
Response []string `yaml:"resp,omitempty" json:"resp,omitempty"` | ||
} | ||
|
||
type GetEnvTypeResponse struct { | ||
Response EnvType `yaml:"resp,omitempty" json:"resp,omitempty"` | ||
} |
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
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
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.