初步完成model的初始化

This commit is contained in:
eson 2024-04-08 00:03:37 +08:00
parent e79bc34225
commit b9f993df3b
68 changed files with 1524 additions and 8 deletions

View File

@ -0,0 +1,15 @@
package vestmore_generator
import (
"testing"
sql_generator "github.com/474420502/generator/sql"
_ "github.com/go-sql-driver/mysql" // MySQL driver
)
func TestGenModel(t *testing.T) {
genModel := sql_generator.NewGenModel().WithOpenSqlDriver("mysql", "php:aFk3i4Dj#76!4sd@tcp(47.243.100.6:3306)/zunxinfinance?charset=utf8mb4&timeout=3s")
genModel.WithGenFileDir("../model")
genModel.GenWithLogics()
}

7
go.mod
View File

@ -2,9 +2,14 @@ module github.com/iapologizewhenimwrong/Vestmore_GO
go 1.22.1
require github.com/gin-gonic/gin v1.9.1
require (
github.com/474420502/generator v0.0.4
github.com/gin-gonic/gin v1.9.1
github.com/go-sql-driver/mysql v1.8.1
)
require (
filippo.io/edwards25519 v1.1.0 // indirect
github.com/bytedance/sonic v1.9.1 // indirect
github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311 // indirect
github.com/gabriel-vasile/mimetype v1.4.2 // indirect

6
go.sum
View File

@ -1,3 +1,7 @@
filippo.io/edwards25519 v1.1.0 h1:FNf4tywRC1HmFuKW5xopWpigGjJKiJSV0Cqo0cJWDaA=
filippo.io/edwards25519 v1.1.0/go.mod h1:BxyFTGdWcka3PhytdK4V28tE5sGfRvvvRV7EaN4VDT4=
github.com/474420502/generator v0.0.4 h1:Nt+EGlFk1NlkXD4mm1PGgL//1t19K+0l8eIHnu4AYuo=
github.com/474420502/generator v0.0.4/go.mod h1:rV16HGKggm3CovKAyjc743G0ZPfNXfiBrYgNHjTn3jA=
github.com/bytedance/sonic v1.5.0/go.mod h1:ED5hyg4y6t3/9Ku1R6dU/4KyJ48DZ4jPhfY1O2AihPM=
github.com/bytedance/sonic v1.9.1 h1:6iJ6NqdoxCDr6mbY8h18oSO+cShGSMRGCEo7F2h0x8s=
github.com/bytedance/sonic v1.9.1/go.mod h1:i736AoUSYt75HyZLoJW9ERYxcy6eaN6h4BZXU064P/U=
@ -22,6 +26,8 @@ github.com/go-playground/universal-translator v0.18.1 h1:Bcnm0ZwsGyWbCzImXv+pAJn
github.com/go-playground/universal-translator v0.18.1/go.mod h1:xekY+UJKNuX9WP91TpwSH2VMlDf28Uj24BCp08ZFTUY=
github.com/go-playground/validator/v10 v10.14.0 h1:vgvQWe3XCz3gIeFDm/HnTIbj6UGmg/+t63MyGU2n5js=
github.com/go-playground/validator/v10 v10.14.0/go.mod h1:9iXMNT7sEkjXb0I+enO7QXmzG6QCsPWY4zveKFVRSyU=
github.com/go-sql-driver/mysql v1.8.1 h1:LedoTUt/eveggdHS9qUFC1EFSa8bU2+1pZjSRpvNJ1Y=
github.com/go-sql-driver/mysql v1.8.1/go.mod h1:wEBSXgmK//2ZFJyE+qWnIsVGmvmEKlqwuVSjsCm7DZg=
github.com/goccy/go-json v0.10.2 h1:CrxCmQqYDkv1z7lO7Wbh2HN93uovUHgrECaO5ZrCXAU=
github.com/goccy/go-json v0.10.2/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I=
github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk=

View File

@ -0,0 +1,5 @@
package model
type KillaraAdAppModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraAdLaunchModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraAdPcModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraAdPopupModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraAdXcxModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraCatalogAndroidModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraCatalogBankModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraCatalogCountryModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraCatalogCurrencyModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraCatalogExportModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraCatalogFileModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraCatalogHolidayModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraCatalogInviteModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraCatalogLanguageModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraCatalogMerchantModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraCatalogNoticeModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraCatalogServicefeeModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraCommissionModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraCustomerAccountModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraCustomerBalanceModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraCustomerCommissionModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraCustomerCommissionWithdrawModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraCustomerDepositModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraCustomerDeviceLogModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraCustomerDeviceModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraCustomerDistributorModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraCustomerExchangeModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraCustomerFavouriteModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraCustomerFeedbackModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraCustomerFundModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraCustomerHoldModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraCustomerInternationalModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraCustomerIpoModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraCustomerModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraCustomerNewsModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraCustomerPointModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraCustomerTokenModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraCustomerTransactionModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraCustomerWithdrawModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraFundAchievementModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraFundCategoryModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraFundModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraFundNetModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraHelpCategoryModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraHelpModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraHostingDayModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraHostingMagnificationModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraHostingStocksModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraHundsunFundModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraInfoCategoryModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraInfoModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraInformationTermModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraInternationalModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraIpoModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraIpoQtyModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraIpoRatioModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraSettingModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraStockModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraUserGroupModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraUserModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraUserLoginHistoryModel struct {
// fields ...
}

View File

@ -0,0 +1,5 @@
package model
type KillaraUserTokenModel struct {
// fields ...
}

1180
model/types_gen.go Normal file

File diff suppressed because it is too large Load Diff

0
model/var.go Normal file
View File

View File

@ -21,6 +21,13 @@ func TestGenActionsHandlerFunc(t *testing.T) {
createActionRoutesGen()
}
func TestCase2(t *testing.T) {
eg := `// device: string;`
re := regexp.MustCompile(` +([a-zA-Z_\-/]+)(\?{0,1}): +(\w+) ?;`)
vs := re.FindAllStringSubmatch(eg, -1)
log.Println(vs)
}
// 生成路由代码
func createActionRoutesGen() {
var err error
@ -169,13 +176,6 @@ func getActionsInfo() map[string]*actionsFunc {
return actionsMap
}
func TestCase2(t *testing.T) {
eg := `// device: string;`
re := regexp.MustCompile(` +([a-zA-Z_\-/]+)(\?{0,1}): +(\w+) ?;`)
vs := re.FindAllStringSubmatch(eg, -1)
log.Println(vs)
}
func toCamelCase(s string) string {
var sb strings.Builder
capitalizeNext := true