s_local_life.go 438 B

1234567891011121314151617181920
  1. package service
  2. import (
  3. "context"
  4. "youngee_b_api/model/http_model"
  5. )
  6. var SLcoalLife *sLocalLife
  7. type sLocalLife struct {
  8. }
  9. // CreateSLocalLife 新建服务商加入商单后的公开本地生活
  10. func (*sLocalLife) CreateSLocalLife(ctx context.Context, request http_model.LocalLifeAddToListRequest) error {
  11. // 1. 建立SLocalLife信息
  12. // 1.1. 根据传入的LocalLifeId去LocalLife表查找信息补全SLocalLife
  13. return nil
  14. }