third-platform-sdk/sdk/topsdk/defaultability/domain/AlibabaAlscUnionKbItemStoreDetailGetStoreBusiness.go
2024-05-04 16:57:40 +08:00

37 lines
1.2 KiB
Go
Raw Permalink 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 domain
type AlibabaAlscUnionKbItemStoreDetailGetStoreBusiness struct {
/*
营业状态0-营业中1-暂停营业2-休息中,-1-关店) */
BusinessStatus *int64 `json:"business_status,omitempty" `
/*
营业状态描述 */
BusinessDesc *string `json:"business_desc,omitempty" `
/*
营业时间 */
BusinessTime *AlibabaAlscUnionKbItemStoreDetailGetStoreBusinessTime `json:"business_time,omitempty" `
/*
店铺公告 */
Promotion *string `json:"promotion,omitempty" `
}
func (s *AlibabaAlscUnionKbItemStoreDetailGetStoreBusiness) SetBusinessStatus(v int64) *AlibabaAlscUnionKbItemStoreDetailGetStoreBusiness {
s.BusinessStatus = &v
return s
}
func (s *AlibabaAlscUnionKbItemStoreDetailGetStoreBusiness) SetBusinessDesc(v string) *AlibabaAlscUnionKbItemStoreDetailGetStoreBusiness {
s.BusinessDesc = &v
return s
}
func (s *AlibabaAlscUnionKbItemStoreDetailGetStoreBusiness) SetBusinessTime(v AlibabaAlscUnionKbItemStoreDetailGetStoreBusinessTime) *AlibabaAlscUnionKbItemStoreDetailGetStoreBusiness {
s.BusinessTime = &v
return s
}
func (s *AlibabaAlscUnionKbItemStoreDetailGetStoreBusiness) SetPromotion(v string) *AlibabaAlscUnionKbItemStoreDetailGetStoreBusiness {
s.Promotion = &v
return s
}