广汽安道拓Acura项目MES后台
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.

59 lines
2.0 KiB

3 years ago
3 years ago
  1. // Copyright (c) Shenyang Leading Edge Intelligent Technology Co., Ltd. All rights reserved.
  2. package common
  3. import (
  4. "LAPP_ACURA_MOM_BACKEND/global"
  5. "LAPP_ACURA_MOM_BACKEND/services/common/implments"
  6. )
  7. /******************************************************************************
  8. *
  9. * @Interface Name : UploadPicService
  10. *-----------------------------------------------------------------------------
  11. *
  12. * @Description : OdsHead的服务接口
  13. *
  14. * @Author : 代码生成器创建
  15. *
  16. * @Date : 2021-03-18 23:20:31
  17. *
  18. ******************************************************************************/
  19. type UploadPicService interface {
  20. /******************************************************************************
  21. *
  22. * @Function Name : UploadMustPic
  23. *-----------------------------------------------------------------------------
  24. *
  25. * @Description : UploadMustPic
  26. *
  27. * @Function Parameters : 当前访问人员信息
  28. *
  29. * @Function Parameters : 需要插入的UploadMustPic
  30. *
  31. * @Return Value : 执行时发生的错误
  32. *
  33. * @Author : 代码生成器创建
  34. *
  35. * @Date : 2021-03-18 23:20:31
  36. *
  37. ******************************************************************************/
  38. UploadMustPic(*global.User) error
  39. }
  40. /******************************************************************************
  41. *
  42. * @Function Name : NewUploadPicService
  43. *-----------------------------------------------------------------------------
  44. *
  45. * @Description : 创建一个UploadPicService
  46. *
  47. * @Return Value : UploadPicService实例
  48. *
  49. * @Author : 代码生成器创建
  50. *
  51. * @Date : 2021-03-18 23:20:31
  52. *
  53. ******************************************************************************/
  54. func NewUploadPicService() UploadPicService {
  55. return implments.NewUploadMustPicImplement()
  56. }