| 1234567891011121314151617181920212223242526272829303132333435363738 |
- // ==========================================================================
- // 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"`
- MainUser string `json:"mainUser"`
- AttachUserId int `json:"attachUserId"`
- AttachUser string `json:"attachUser"`
- InstrumentId int `json:"instrumentId"`
- AppointUserId int `json:"appointUserId"`
- AppointUser string `json:"appointUser"`
- Status string `json:"status"`
- SettleStatus string `json:"settleStatus"`
- FeeType string `json:"feeType"`
- AppointStartDate string `json:"appointStartDate"`
- AppointEndDate string `json:"appointEndDate"`
- }
- type AccountMainConfirmReq struct {
- MainId int `json:"mainId"`
- }
- type AccountMainAddReq struct {
- Main SettleAccountMain `json:"main"`
- Details []SettleAccountDetail `json:"details"`
- }
|