10 lines
137 B
Go
10 lines
137 B
Go
|
package response
|
||
|
|
||
|
import (
|
||
|
"goweb-gin-demo/model/wt"
|
||
|
)
|
||
|
|
||
|
type WtCommentResult struct {
|
||
|
wt.WtComment
|
||
|
NickName string `json:"nickName"`
|
||
|
}
|