1 Star 0 Fork 0

ichub / go-factroy2024

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
TLayoutDto.go 1.06 KB
一键复制 编辑 原始数据 按行查看 历史
leijmdas 提交于 2024-01-31 22:46 . add
package dto
import (
"encoding/json"
)
type TLayoutDto struct {
Id string `json:"id"`
Name string `json:"name"`
Language string `json:"language"`
ShopId string `json:"shop_id"`
Direction string `json:"direction"`
Active bool `json:"active"`
MarginLeft string `json:"margin_left"`
MarginRight string `json:"margin_right"`
MarginTop string `json:"margin_top"`
MarginBottom string `json:"margin_bottom"`
Length string `json:"length"`
Width string `json:"width"`
ApiId string `json:"api_id"`
Size string `json:"size"`
IsTemp bool `json:"is_temp"`
IsDefault bool `json:"is_default"`
DomainId string `json:"domain_id"`
EntityId string `json:"entity_id"`
//TemplateBody interface{} `json:"template_body"`
//TemplateJson interface{} `json:"template_json"`
ExistJson bool `json:"exist_json"`
EntityName string `json:"entity_name"`
EntityCode string `json:"entity_code"`
}
func (layoutDto *TLayoutDto) ToString() string {
bs, _ := json.Marshal(layoutDto)
return string(bs)
}
Go
1
https://gitee.com/ichub/go-factroy2024.git
git@gitee.com:ichub/go-factroy2024.git
ichub
go-factroy2024
go-factroy2024
v1.2.0

搜索帮助