| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- // ==========================================================================
- // 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"`
- }
- type AccountMainCancelReq struct {
- AppointId int `json:"appointId"`
- }
|