check.go 543 B

12345678910111213141516171819202122232425
  1. package sobot
  2. // Check the TicketParam
  3. func (tp *TicketParam) Check() bool {
  4. if tp.TicketTitle == "" || tp.TicketID == 0 || tp.TicketContent == "" || tp.CustomerEmail == "" {
  5. return false
  6. }
  7. return true
  8. }
  9. // CheckModify the TicketParam modiy
  10. func (tp *TicketParam) CheckModify() bool {
  11. if tp.TicketID == 0 || tp.CustomerEmail == "" {
  12. return false
  13. }
  14. return true
  15. }
  16. // Check the ReplyParam
  17. func (rp *ReplyParam) Check() bool {
  18. if rp.CustomerEmail == "" || rp.ReplyContent == "" || rp.TicketID == 0 {
  19. return false
  20. }
  21. return true
  22. }