初步完成model的初始化
This commit is contained in:
parent
e79bc34225
commit
b9f993df3b
15
generator/gen_model_test.go
Normal file
15
generator/gen_model_test.go
Normal 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
7
go.mod
|
@ -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
6
go.sum
|
@ -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=
|
||||
|
|
5
model/killara_ad_app_logic.go
Normal file
5
model/killara_ad_app_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraAdAppModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_ad_launch_logic.go
Normal file
5
model/killara_ad_launch_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraAdLaunchModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_ad_pc_logic.go
Normal file
5
model/killara_ad_pc_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraAdPcModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_ad_popup_logic.go
Normal file
5
model/killara_ad_popup_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraAdPopupModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_ad_xcx_logic.go
Normal file
5
model/killara_ad_xcx_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraAdXcxModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_catalog_android_logic.go
Normal file
5
model/killara_catalog_android_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraCatalogAndroidModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_catalog_bank_logic.go
Normal file
5
model/killara_catalog_bank_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraCatalogBankModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_catalog_country_logic.go
Normal file
5
model/killara_catalog_country_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraCatalogCountryModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_catalog_currency_logic.go
Normal file
5
model/killara_catalog_currency_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraCatalogCurrencyModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_catalog_export_logic.go
Normal file
5
model/killara_catalog_export_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraCatalogExportModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_catalog_file_logic.go
Normal file
5
model/killara_catalog_file_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraCatalogFileModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_catalog_holiday_logic.go
Normal file
5
model/killara_catalog_holiday_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraCatalogHolidayModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_catalog_invite_logic.go
Normal file
5
model/killara_catalog_invite_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraCatalogInviteModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_catalog_language_logic.go
Normal file
5
model/killara_catalog_language_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraCatalogLanguageModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_catalog_merchant_logic.go
Normal file
5
model/killara_catalog_merchant_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraCatalogMerchantModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_catalog_notice_logic.go
Normal file
5
model/killara_catalog_notice_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraCatalogNoticeModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_catalog_servicefee_logic.go
Normal file
5
model/killara_catalog_servicefee_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraCatalogServicefeeModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_commission_logic.go
Normal file
5
model/killara_commission_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraCommissionModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_customer_account_logic.go
Normal file
5
model/killara_customer_account_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraCustomerAccountModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_customer_balance_logic.go
Normal file
5
model/killara_customer_balance_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraCustomerBalanceModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_customer_commission_logic.go
Normal file
5
model/killara_customer_commission_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraCustomerCommissionModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_customer_commission_withdraw_logic.go
Normal file
5
model/killara_customer_commission_withdraw_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraCustomerCommissionWithdrawModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_customer_deposit_logic.go
Normal file
5
model/killara_customer_deposit_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraCustomerDepositModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_customer_device_log_logic.go
Normal file
5
model/killara_customer_device_log_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraCustomerDeviceLogModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_customer_device_logic.go
Normal file
5
model/killara_customer_device_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraCustomerDeviceModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_customer_distributor_logic.go
Normal file
5
model/killara_customer_distributor_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraCustomerDistributorModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_customer_exchange_logic.go
Normal file
5
model/killara_customer_exchange_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraCustomerExchangeModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_customer_favourite_logic.go
Normal file
5
model/killara_customer_favourite_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraCustomerFavouriteModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_customer_feedback_logic.go
Normal file
5
model/killara_customer_feedback_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraCustomerFeedbackModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_customer_fund_logic.go
Normal file
5
model/killara_customer_fund_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraCustomerFundModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_customer_hold_logic.go
Normal file
5
model/killara_customer_hold_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraCustomerHoldModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_customer_international_logic.go
Normal file
5
model/killara_customer_international_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraCustomerInternationalModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_customer_ipo_logic.go
Normal file
5
model/killara_customer_ipo_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraCustomerIpoModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_customer_logic.go
Normal file
5
model/killara_customer_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraCustomerModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_customer_news_logic.go
Normal file
5
model/killara_customer_news_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraCustomerNewsModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_customer_point_logic.go
Normal file
5
model/killara_customer_point_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraCustomerPointModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_customer_token_logic.go
Normal file
5
model/killara_customer_token_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraCustomerTokenModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_customer_transaction_logic.go
Normal file
5
model/killara_customer_transaction_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraCustomerTransactionModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_customer_withdraw_logic.go
Normal file
5
model/killara_customer_withdraw_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraCustomerWithdrawModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_fund_achievement_logic.go
Normal file
5
model/killara_fund_achievement_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraFundAchievementModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_fund_category_logic.go
Normal file
5
model/killara_fund_category_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraFundCategoryModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_fund_logic.go
Normal file
5
model/killara_fund_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraFundModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_fund_net_logic.go
Normal file
5
model/killara_fund_net_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraFundNetModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_help_category_logic.go
Normal file
5
model/killara_help_category_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraHelpCategoryModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_help_logic.go
Normal file
5
model/killara_help_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraHelpModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_hosting_day_logic.go
Normal file
5
model/killara_hosting_day_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraHostingDayModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_hosting_magnification_logic.go
Normal file
5
model/killara_hosting_magnification_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraHostingMagnificationModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_hosting_stocks_logic.go
Normal file
5
model/killara_hosting_stocks_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraHostingStocksModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_hundsun_fund_logic.go
Normal file
5
model/killara_hundsun_fund_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraHundsunFundModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_info_category_logic.go
Normal file
5
model/killara_info_category_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraInfoCategoryModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_info_logic.go
Normal file
5
model/killara_info_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraInfoModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_information_term_logic.go
Normal file
5
model/killara_information_term_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraInformationTermModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_international_logic.go
Normal file
5
model/killara_international_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraInternationalModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_ipo_logic.go
Normal file
5
model/killara_ipo_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraIpoModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_ipo_qty_logic.go
Normal file
5
model/killara_ipo_qty_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraIpoQtyModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_ipo_ratio_logic.go
Normal file
5
model/killara_ipo_ratio_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraIpoRatioModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_setting_logic.go
Normal file
5
model/killara_setting_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraSettingModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_stock_logic.go
Normal file
5
model/killara_stock_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraStockModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_user_group_logic.go
Normal file
5
model/killara_user_group_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraUserGroupModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_user_logic.go
Normal file
5
model/killara_user_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraUserModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_user_login_history_logic.go
Normal file
5
model/killara_user_login_history_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraUserLoginHistoryModel struct {
|
||||
// fields ...
|
||||
}
|
5
model/killara_user_token_logic.go
Normal file
5
model/killara_user_token_logic.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type KillaraUserTokenModel struct {
|
||||
// fields ...
|
||||
}
|
1180
model/types_gen.go
Normal file
1180
model/types_gen.go
Normal file
File diff suppressed because it is too large
Load Diff
0
model/var.go
Normal file
0
model/var.go
Normal 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
|
||||
|
|
Loading…
Reference in New Issue
Block a user