charge_ratio.go 325 B

12345678910111213141516171819
  1. package income
  2. // ArchiveChargeRatio av charge ratio
  3. type ArchiveChargeRatio struct {
  4. ID int64
  5. ArchiveID int64
  6. Ratio int64
  7. AdjustType int
  8. CType int
  9. }
  10. // UpChargeRatio up charge ratio
  11. type UpChargeRatio struct {
  12. ID int64
  13. MID int64
  14. Ratio int64
  15. AdjustType int
  16. CType int
  17. }