| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- // ==========================================================================
- // 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"`
- IsSelf string `json:"isSelf"` // 1 查看全部;其他 查看自己
- }
- type AccountBillSettleReq struct {
- BillId int `json:"billId"`
- AccountId int `json:"accountId"`
- Amount float64 `json:"amount"`
- }
- type AccountBillConfirmReq struct {
- BillId int `json:"billId"`
- }
- type BillInfo struct {
- SettleAccountBill
- TotalAmount float64 `orm:"TotalAmount" json:"total_amount"` // 计费总额
- }
|