...
|
...
|
@@ -24,8 +24,17 @@ func init() { |
|
|
orm.RegisterModel(new(ChanceReviseLog))
|
|
|
}
|
|
|
|
|
|
type ReviseContentsItemData struct {
|
|
|
Type string `json:"type"`
|
|
|
Value string `json:"value"`
|
|
|
Path string `json:"path"`
|
|
|
}
|
|
|
|
|
|
type ReviseContentsItem struct {
|
|
|
Content string `json:"content"`
|
|
|
Content string `json:"content"`
|
|
|
Data []ReviseContentsItemData `json:"data"`
|
|
|
InputType string `json:"inputType"`
|
|
|
Lable string `json:"lable "`
|
|
|
}
|
|
|
|
|
|
type ChanceReviseLogData struct {
|
...
|
...
|
|