package model

//基石供应商表DB实体(暂时只放用到的字段)
type SupplierEntity struct {
	SupplierId         	int     `json:"supplier_id"`
	TypeId 		 		int 	`json:"type_id" `
	Status 				int   	`json:"status" `
	SupplierName 		string  `json:"supplier_name" `
}

//联营供应商表DB实体(暂时只放用到的字段)
type PoolSupplierEntity struct {
	SupplierCode         	string     `json:"supplier_code"`//供应商编码
	ChannelUid 				int   	`json:"channel_uid" `//渠道开发员ID
}