service.go 451 B

12345678910111213141516171819202122232425
  1. package staff
  2. import (
  3. "go-common/app/interface/main/creative/conf"
  4. "go-common/app/interface/main/creative/service"
  5. )
  6. type Service struct {
  7. c *conf.Config
  8. }
  9. func New(c *conf.Config, rpcdaos *service.RPCDaos) *Service {
  10. s := &Service{
  11. c: c,
  12. }
  13. return s
  14. }
  15. func (s *Service) Config() (conf *conf.StaffConf) {
  16. conf = s.c.StaffConf
  17. return
  18. }
  19. func (s *Service) TypeConfig() (conf []*conf.StaffTypeConf) {
  20. conf = s.c.StaffConf.TypeList
  21. return
  22. }