bill-server-go/internal/bill/domain.go

43 lines
1.1 KiB
Go
Raw Normal View History

2023-05-07 22:49:59 +08:00
package bill
2023-06-01 17:55:41 +08:00
import (
"context"
"gorm.io/gorm"
)
2023-05-07 22:49:59 +08:00
// Bill represents 'bills' object.
type Bill struct {
2023-06-01 17:55:41 +08:00
gorm.Model
2023-06-01 20:06:43 +08:00
Type string
Date string
Money float64
Class string
Options string
2023-05-07 22:49:59 +08:00
}
2023-05-31 15:40:27 +08:00
// BDate 用于判断获取bill的时间范围
2023-05-07 22:49:59 +08:00
type BDate struct {
Year int `json:"year"`
Month int `json:"month"`
Day int `json:"day"`
}
type BillRepository interface {
2023-06-10 15:19:31 +08:00
GetBills(ctx context.Context) ([]Bill, error)
GetBillByDay(ctx context.Context, year int, month int, day int) ([]Bill, error)
GetBillByMonth(ctx context.Context, year int, month int) ([]Bill, error)
GetBillByYear(ctx context.Context, year int) ([]Bill, error)
2023-05-07 22:49:59 +08:00
GetBillByID(ctx context.Context, id int) (*Bill, error)
CreateBill(ctx context.Context, bill *Bill) error
UpdateBill(ctx context.Context, bill *Bill) error
DeleteBill(ctx context.Context, id int) error
}
type BillService interface {
2023-06-10 15:19:31 +08:00
GetBills(ctx context.Context, date BDate) ([]Bill, error)
2023-05-11 21:00:29 +08:00
GetBillByID(ctx context.Context, id int) (*Bill, error)
CreateBill(ctx context.Context, bill *Bill) error
UpdateBill(ctx context.Context, bill *Bill) error
DeleteBill(ctx context.Context, id int) error
2023-05-07 22:49:59 +08:00
}