settle_account_bill.go 695 B

12345678910111213141516171819202122232425
  1. // ==========================================================================
  2. // This is auto-generated by gf cli tool. Fill this file as you wish.
  3. // ==========================================================================
  4. package model
  5. import (
  6. "lims_adapter/model/account/internal"
  7. )
  8. // SettleAccountBill is the golang structure for table settle_account_bill.
  9. type SettleAccountBill internal.SettleAccountBill
  10. // Fill with you ideas below.
  11. type SettleAccountBillReq struct {
  12. MainUserId int `json:"mainUserId"`
  13. Status string `json:"status"`
  14. }
  15. type AccountBillSettleReq struct {
  16. BillId int `json:"billId"`
  17. AccountId int `json:"accountId"`
  18. Amount float64 `json:"amount"`
  19. }