車智匯模式制度開發
阿新 • • 發佈:2018-11-16
public static IWebHostBuilder CreateDefaultBuilder(string[] args) { var builder = new WebHostBuilder(); if (string.IsNullOrEmpty(builder.GetSetting(WebHostDefaults.ContentRootKey))) { builder.UseContentRoot(Directory.GetCurrentDirectory()); }if (args != null) { builder.UseConfiguration(new ConfigurationBuilder().AddCommandLine(args).Build()); } builder.UseKestrel((builderContext, options) => { options.Configure(builderContext.Configuration.GetSection("Kestrel")); }) .ConfigureAppConfiguration((hostingContext, config) => { var env = hostingContext.HostingEnvironment; config.AddJsonFile("appsettings.json", optional: true, reloadOnChange: true) .AddJsonFile($"appsettings.{env.EnvironmentName}.json", optional: true, reloadOnChange: true); if (env.IsDevelopment()) { var appAssembly = Assembly.Load(new AssemblyName(env.ApplicationName)); if (appAssembly != null) { config.AddUserSecrets(appAssembly, optional: true); } } config.AddEnvironmentVariables(); if (args != null) { config.AddCommandLine(args); } }) .ConfigureLogging((hostingContext, logging) => { logging.AddConfiguration(hostingContext.Configuration.GetSection("Logging")); logging.AddConsole(); logging.AddDebug(); logging.AddEventSourceLogger(); }) .ConfigureServices((hostingContext, services) => { // Fallback services.PostConfigure<HostFilteringOptions>(options => { if (options.AllowedHosts == null || options.AllowedHosts.Count == 0) { // "AllowedHosts": "localhost;127.0.0.1;[::1]" var hosts = hostingContext.Configuration["AllowedHosts"]?.Split(new[] { ';' }, StringSplitOptions.RemoveEmptyEntries); // Fall back to "*" to disable.
options.AllowedHosts = (hosts?.Length > 0 ? hosts : new[] { "*" });
車智匯開發,車智匯模式開發,車智匯APP開發,車智匯軟體開發,車智匯平臺開發,系統開發諮詢:謝健 134.2220.2839 。net,php
車智匯運營模式收益介紹
系統身份:經銷商,區縣代理,金牌區縣代理,市代,金牌市代,省代,金牌省代
1.經銷商:
直推5臺,團隊業績15臺
2.區縣代理:
團隊業績100臺車,直接推薦15臺,
3.金牌區縣代理:
團隊業績300臺車,直接推薦15臺(除最大代理商之外,其他代理商總計60臺)
4.市級代理:
團隊業績600臺車,直接推薦15臺(除最大代理商之外,其他代理商總計180臺)
5.金牌市級代理:
團隊業績2000臺車,直接推薦15臺(除最大代理商之外,其他代理商總計800臺)
6.省級代理:
團隊業績7000臺車,直接推薦15臺,(除最大代理商之外,其他代理商總計3500臺)
7.金牌省級代理:
團隊業績22000臺車,直接推薦15臺。(除最大代理商之外,其他代理商總計13200臺
車智匯獎勵收益:
獎勵一:直推分銷獎,每直推一名會員購買一臺裝置獎勵430元
獎勵二:級差分銷獎
經銷商每臺獎勵86元
區縣代理每臺獎勵129元
金牌區縣代理每臺獎勵172元
市代每臺獎勵215元
金牌市代每臺獎勵258元
省代每臺獎勵301元
金牌省代每臺獎勵344元
獎勵三:同級獎勵
獎勵四:加權分紅
亞美科技車智匯所倡導的“開啟智慧車生活“理念,就是指在移動網際網路、無線通訊等技術,亞美科技以汽車為載體,亞美科技專門針對性地為車主日常生活場景提供一體化的智慧雲端服務。這個連線的裝置感測器就是亞美科技公司的產品——車智匯。公司最終目標要做成車聯網大資料庫,搭建平臺,成為車主的阿里巴巴。
public static IWebHostBuilder CreateDefaultBuilder(string[] args) { var builder = new WebHostBuilder(); if (string.IsNullOrEmpty(builder.GetSetting(WebHostDefaults.ContentRootKey))) { builder.UseContentRoot(Directory.GetCurrentDirectory()); } if (args != null) { builder.UseConfiguration(new ConfigurationBuilder().AddCommandLine(args).Build()); } builder.UseKestrel((builderContext, options) => { options.Configure(builderContext.Configuration.GetSection("Kestrel")); }) .ConfigureAppConfiguration((hostingContext, config) => { var env = hostingContext.HostingEnvironment; config.AddJsonFile("appsettings.json", optional: true, reloadOnChange: true) .AddJsonFile($"appsettings.{env.EnvironmentName}.json", optional: true, reloadOnChange: true);