You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
433 B
15 lines
433 B
package archive |
|
|
|
import ( |
|
"context" |
|
) |
|
|
|
// StaffApplySubmit fn |
|
func (s *Service) StaffApplySubmit(c context.Context, id, aid, mid, state, atype int64, flagAddBlack, flagRefuse int) (err error) { |
|
return s.arc.StaffApplySubmit(c, id, aid, mid, state, atype, flagAddBlack, flagRefuse) |
|
} |
|
|
|
// StaffValidate func |
|
func (s *Service) StaffValidate(c context.Context, mid int64) (uv int, err error) { |
|
return s.arc.StaffMidValidate(c, mid) |
|
}
|
|
|