ProjectUrl.go 441 B

1234567891011121314151617
  1. package util
  2. const projectGoUrl = "E:\\project\\kkc\\kkc-go\\"
  3. const projectVueUrl = "E:\\project\\kkc\\kkc-shop\\"
  4. func GetDomainUrl() string {
  5. return projectGoUrl + "data\\domain\\DoMain.go"
  6. }
  7. func GetDaoUrl() string {
  8. return projectGoUrl + "data\\dao\\manage\\"
  9. }
  10. func GetRouterUrl() string {
  11. return projectGoUrl + "router\\BaseBackRouter.go"
  12. }
  13. func GetVueApiUrl() string {
  14. return projectVueUrl + "src\\api\\back\\BaseBackApi.ts"
  15. }