patch.go 433 B

12345678910111213141516171819202122232425262728293031
  1. package model
  2. import (
  3. "go-common/library/time"
  4. )
  5. // Patch patch
  6. type Patch struct {
  7. Tax int64
  8. Income int64
  9. OldTax int64
  10. OldIncome int64
  11. MID int64
  12. TagID int64
  13. }
  14. // Av av_income
  15. type Av struct {
  16. AvID int64
  17. MID int64
  18. TagID int64
  19. Income int64
  20. TaxMoney int64
  21. }
  22. // AvBaseIncome av_base_income
  23. type AvBaseIncome struct {
  24. MID int64
  25. Date time.Time
  26. AvBaseIncome int64
  27. }