12345678910111213141516171819 |
- // Copyright 2019 getensh.com. All rights reserved.
- // Use of this source code is governed by getensh.com.
- package gd_management
- type GenerateBillReq struct {
- Month string `json:"month"`
- }
- type GenerateBillReply struct {
- }
- type BillNotifyReq struct{
- Month string `json:"month"`
- }
- type BillNotifyReply struct{
- }
|