product_line.go 263 字节 原文件 审查 历史 永久链接 1 2 3 4 5 6 7 8 9 10 11 package domain // 生产线 type ProductLine struct { // 生产线ID LineId int `json:"lineId,omitempty"` // 生产线名称 LineName string `json:"lineName,omitempty"` // 工段列表 ProductSections []*ProductSection `json:"productSections,omitempty"` }