blocked.go 457 B

12345678910111213141516171819
  1. package model
  2. import xtime "go-common/library/time"
  3. // BlockAndMoralStatus blocked status and moral.
  4. type BlockAndMoralStatus struct {
  5. MID int64 `json:"mid"`
  6. Status int8 `json:"status"`
  7. STime xtime.Time `json:"start_time"`
  8. ETime xtime.Time `json:"end_time"`
  9. }
  10. // BlockLabourAnswerLog .
  11. type BlockLabourAnswerLog struct {
  12. ID int64 `json:"id"`
  13. MID int64 `json:"mid"`
  14. Score int8 `json:"score"`
  15. CTime string `json:"ctime"`
  16. }