accounting.go 318 B

12345678910111213141516171819
  1. // Copyright 2019 getensh.com. All rights reserved.
  2. // Use of this source code is governed by getensh.com.
  3. package gd_management
  4. type GenerateBillReq struct {
  5. Month string `json:"month"`
  6. }
  7. type GenerateBillReply struct {
  8. }
  9. type BillNotifyReq struct{
  10. Month string `json:"month"`
  11. }
  12. type BillNotifyReply struct{
  13. }