| 12345678910111213141516171819202122 |
- // ==========================================================================
- // 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 {
- PageNun int `json:"pageNum"`
- PageSize int `json:"pageSize"`
- Account string `json:"account"`
- AccountName string `json:"accountName"`
- RealName string `json:"realName"`
- }
|