customer_value.go 214 字节 原文件 审查 历史 永久链接 1 2 3 4 5 6 7 8 9 10 11 package models type CustomerValue struct { TableName string `pg:"customer_values,alias:customer_value"` // 客户价值ID Id int // 客户价值名称 CustomerValueName string // 公司ID CompanyId int64 }