Files
baseapi/platformapi/tao_vegetable/sdk/ability3156/domain/AlibabaTclsAelophyBillDailyQueryBillDailyQueryRequest.go
邹宗楠 65976332fc 1
2023-06-15 09:08:54 +08:00

47 lines
1.5 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 AlibabaTclsAelophyBillDailyQueryBillDailyQueryRequest struct {
/*
当前页码从1开始 defalutValue:1 */
Current *int64 `json:"current,omitempty" `
/*
页大小 defalutValue:20 */
PageSize *int64 `json:"page_size,omitempty" `
/*
经营店ID */
StoreId *string `json:"store_id,omitempty" `
/*
账单开始时间,默认系统时间前一天 */
BillStartDate *int64 `json:"bill_start_date,omitempty" `
/*
账单结束时间,默认系统时间前一天 */
BillEndDate *int64 `json:"bill_end_date,omitempty" `
}
func (s *AlibabaTclsAelophyBillDailyQueryBillDailyQueryRequest) SetCurrent(v int64) *AlibabaTclsAelophyBillDailyQueryBillDailyQueryRequest {
s.Current = &v
return s
}
func (s *AlibabaTclsAelophyBillDailyQueryBillDailyQueryRequest) SetPageSize(v int64) *AlibabaTclsAelophyBillDailyQueryBillDailyQueryRequest {
s.PageSize = &v
return s
}
func (s *AlibabaTclsAelophyBillDailyQueryBillDailyQueryRequest) SetStoreId(v string) *AlibabaTclsAelophyBillDailyQueryBillDailyQueryRequest {
s.StoreId = &v
return s
}
func (s *AlibabaTclsAelophyBillDailyQueryBillDailyQueryRequest) SetBillStartDate(v int64) *AlibabaTclsAelophyBillDailyQueryBillDailyQueryRequest {
s.BillStartDate = &v
return s
}
func (s *AlibabaTclsAelophyBillDailyQueryBillDailyQueryRequest) SetBillEndDate(v int64) *AlibabaTclsAelophyBillDailyQueryBillDailyQueryRequest {
s.BillEndDate = &v
return s
}