up_charge.go 258 B

123456789101112131415
  1. package income
  2. import "go-common/library/time"
  3. // UpCharge up charge
  4. type UpCharge struct {
  5. MID int64
  6. AvCount int64
  7. IncCharge int64
  8. TotalCharge int64
  9. Date time.Time
  10. IsDeleted int
  11. CTime time.Time
  12. MTime time.Time
  13. }