data.go 712 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. package teacher
  2. type req_base struct {
  3. TeacherID int // 师父ID
  4. StudentID int // 徒弟ID
  5. BeginTime string // 开始时间
  6. EndTime string // 截止时间
  7. PageIndex int // 页索引
  8. PageSize int // 页大小
  9. }
  10. type topProfitInfo struct {
  11. RowNumber int
  12. TeacherID int
  13. TeacherName string
  14. Profit int
  15. Price int
  16. }
  17. type profitInfo struct {
  18. RowNumber int
  19. TeacherID int
  20. TeacherName string
  21. StudentID int
  22. StudentName string
  23. ProfitType int
  24. Profit int
  25. Price int
  26. Remark string
  27. Crdate string
  28. }
  29. type topProfitList struct {
  30. RecordCount int
  31. List []*topProfitInfo
  32. }
  33. type profitList struct {
  34. RecordCount int
  35. List []*profitInfo
  36. }