Validate 数据验证
()
| 34 | |
| 35 | // Validate 数据验证 |
| 36 | func (l *Like) Validate() error { |
| 37 | if l.UserID <= 0 { |
| 38 | return errors.New("用户ID无效") |
| 39 | } |
| 40 | if l.ObjectID <= 0 { |
| 41 | return errors.New("对象ID无效") |
| 42 | } |
| 43 | if l.Type == "" { |
| 44 | return errors.New("点赞类型不能为空") |
| 45 | } |
| 46 | return nil |
| 47 | } |
| 48 | |
| 49 | // Create 创建点赞记录 |
| 50 | func (l *Like) Create() error { |