123456789101112131415161718192021222324252627282930313233 |
- package cg_sdk
- import (
- "git.sxidc.com/go-framework/baize/framework/core/application"
- )
- type EncodeConfigInfo struct {
- application.InfoIDField
- application.InfoTenantIDField
- Namespace string `json:"namespace"`
- ConfigName string `json:"configName"`
- ConfigContentStr string `json:"-"`
- ConfigContent []EncodeSegment `json:"configContent"`
- EncodeRuleID string `json:"encodeRuleId"`
- EncodeRuleStatus uint8 `json:"encodeRuleStatus"`
- FormSelectList []FormSelectItem `json:"encodeSegmentContent"`
- application.InfoUserIDFields
- application.InfoTimeFields
- }
- type EncodeSegment struct {
- EncodeSegmentID string `json:"encodeSegmentId"`
- EncodeSegmentType string `json:"encodeSegmentType"`
- EncodeSegmentName string `json:"encodeSegmentName"`
- FieldValue string `json:"fieldValue"`
- }
- type FormSelectItem struct {
- FieldName string `json:"fieldName"`
- FieldValue string `json:"fieldValue"`
- }
|