16 lines
506 B
Go
16 lines
506 B
Go
|
|
// 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"`
|
|||
|
|
}
|