Files
servicebase/pkg/dto/GoodsTagDTO.go
2025-11-19 14:24:13 +08:00

14 lines
208 B
Go

package dto
import "time"
type GoodsTagDTO struct {
GoodsId string
GoodsTagId string
GoodsTagName string
GoodsTagIcon string
Priority int32
StartTime time.Time
EndTime time.Time
}