apply_record.go 320 B

123456789101112
  1. package request
  2. type ApplyMarkReq struct {
  3. ApplyRecordId int `description:"申请记录ID"`
  4. UserId int `description:"用户ID"`
  5. }
  6. type ApplyMarkGroupReq struct {
  7. ApplyRecordId int `description:"申请记录ID"`
  8. GroupName string `description:"分组名"`
  9. UserId int `description:"用户ID"`
  10. }