req.go 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. // Author : Eric Kim
  2. // Build Date : 23 Jul 2008 Last Update 02 Aug 2008
  3. // End-Agent for Passcon Multi OS go binding with Windows, MacOS, iOS, and Android
  4. // All rights are reserved.
  5. package locals
  6. type DummyReq struct {
  7. }
  8. type IsMymenuSetReq struct {
  9. TableCode string
  10. MenuId int
  11. IsMymenu string
  12. }
  13. type MemberAuthCom struct {
  14. ActivateCode string
  15. SsoBrand string
  16. SsoSub string
  17. Email string
  18. Password string
  19. FirstName string
  20. SurName string
  21. MobileNo string
  22. TelNo string
  23. SgroupId int
  24. SgroupCode string
  25. Sort string // '1'의 경우 기업고객
  26. CompanyName string
  27. CompanyClass string // 'BB'로 넣을 것것
  28. FullName string
  29. TaxNo string
  30. President string
  31. ZipCode string
  32. Addr1 string
  33. Addr2 string
  34. BizType string
  35. DealItem string
  36. CertImg string
  37. CompanyJson string
  38. }
  39. type UserAuthCom struct {
  40. ActivateCode string
  41. SsoBrand string
  42. SsoSub string
  43. Email string
  44. Password string
  45. FirstName string
  46. SurName string
  47. MobileNo string
  48. }
  49. // type LoginReq struct {
  50. // Email string
  51. // Password string
  52. // }
  53. // type SsoLoginReq struct {
  54. // Email string
  55. // SsoBrand string
  56. // SsoSub string
  57. // }
  58. type SetupRowReq struct {
  59. SetupCode string
  60. BrandCode string
  61. }
  62. type TextVars struct {
  63. Email string
  64. Encrypted string
  65. BrandCode string
  66. TemplateCode string
  67. Sender string
  68. ReservedTime string
  69. TemplateTitle string
  70. TemplateText string
  71. UniqueImage string
  72. }
  73. type TextPageBase struct {
  74. ReplaceVars []ReplaceBase
  75. }
  76. type ReplaceBase struct {
  77. VarName string
  78. VarValue string
  79. }