| 1234567891011121314151617181920212223242526272829303132 |
- // ==========================================================================
- // This is auto-generated by gf cli tool. Fill this file as you wish.
- // ==========================================================================
- package model
- import (
- internal2 "lims_adapter/model/account/internal"
- )
- // SettleAccountMain is the golang structure for table settle_account_main.
- type SettleAccountMain internal2.SettleAccountMain
- // Fill with you ideas below.
- type SettleAccountMainReq struct {
- MainUserId int `json:"mainUserId"`
- AttachUserId int `json:"attachUserId"`
- InstrumentId int `json:"instrumentId"`
- Status string `json:"status"`
- SettleStatus string `json:"settleStatus"`
- FeeType string `json:"feeType"`
- }
- type AccountMainConfirmReq struct {
- MainId int `json:"mainId"`
- }
- type AccountMainAddReq struct {
- Main SettleAccountMain `json:"main"`
- Details []SettleAccountDetail `json:"details"`
- }
|