1234567891011121314151617181920 |
- package api
- import "box-cost/db/model"
- type IPurchBill interface {
- PrintPurchType() string
- Draws()
- SetContent(*model.PurchaseBill)
- SetOffset(int)
- SetTitle(string)
- SetSignatures([]*model.Signature)
- }
- type IRPurchBill interface {
- PrintPurchType() string
- Draws()
- SetContent(*model.PurchaseBill)
- SetOffset(int)
- SetTitle(string)
- }
|