| 12345678910111213141516171819202122232425262728293031323334 |
- // ==========================================================================
- // This is auto-generated by gf cli tool. Fill this file as you wish.
- // ==========================================================================
- package model
- import (
- "lims_adapter/model/account/internal"
- )
- // SettleAccountBill is the golang structure for table settle_account_bill.
- type SettleAccountBill internal.SettleAccountBill
- // Fill with you ideas below.
- type SettleAccountBillReq struct {
- MainUserId int `json:"mainUserId"`
- Status string `json:"status"`
- StartDate string `json:"startDate"`
- EndDate string `json:"endDate"`
- SettleDate string `json:"settleDate"`
- SettleUser string `json:"settleUser"`
- MainUser string `json:"mainUser"`
- }
- type AccountBillSettleReq struct {
- BillId int `json:"billId"`
- AccountId int `json:"accountId"`
- Amount float64 `json:"amount"`
- }
- type AccountBillConfirmReq struct {
- BillId int `json:"billId"`
- }
|