Files
platforms/backend/internal/platform/org_gas_station.go

16 lines
506 B
Go
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// Package platform 包含平台总后台的领域模型和数据访问。
package platform
import "time"
// OrgGasStation 对应 org_gas_station表示可燃气体站经营主体。
type OrgGasStation struct {
Identity string `json:"identity"`
StationCode string `json:"stationCode"`
Name string `json:"name"`
Principal string `json:"principal"`
ServiceArea string `json:"serviceArea"`
Status string `json:"status"`
CreatedAt time.Time `json:"createdAt"`
}