feat: 容器操作优化等

This commit is contained in:
meilin.huang
2025-09-06 21:32:48 +08:00
parent 25195b6360
commit 66d5fd6ca4
64 changed files with 1208 additions and 1856 deletions

View File

@@ -0,0 +1,14 @@
package entity
import "mayfly-go/pkg/model"
// 容器配置
type Container struct {
model.Model
model.ExtraData
Code string `json:"code" gorm:"size:32;comment:code"` // code
Name string `json:"name" gorm:"size:32"` // 名称
Addr string `json:"addr" gorm:"size:64;not null;comment:地址"` // 地址
Remark string `json:"remark" gorm:"comment:备注"` // 备注
}