iFace.go 191 B

1234567891011
  1. package api
  2. import "box-cost/db/model"
  3. type IPurchBill interface {
  4. PrintPurchType() string
  5. Draws()
  6. SetContent(*model.PurchaseBill)
  7. SetTitle(string)
  8. SetSignatures([]*model.Signature)
  9. }