Program.cs 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. using OASystem.Domain.Entities;
  2. using OASystem.Domain.Entities.Business;
  3. using OASystem.Domain.Entities.Customer;
  4. using OASystem.Domain.Entities.Financial;
  5. using OASystem.Domain.Entities.Groups;
  6. using OASystem.Domain.Entities.PersonnelModule;
  7. using OASystem.Domain.Entities.Resource;
  8. using OASystem.Domain.Entities.System;
  9. using SqlSugar;
  10. var db = new SqlSugarClient(new ConnectionConfig()
  11. {
  12. ConnectionString = "server=132.232.92.186;uid=sa;pwd=Yjx@158291;database=OA2023DB;",
  13. DbType = SqlSugar.DbType.SqlServer,
  14. IsAutoCloseConnection = true,
  15. InitKeyType = InitKeyType.Attribute
  16. });
  17. #region Aop
  18. //db.Aop.OnLogExecuting = (sql, pars) =>
  19. //{
  20. // Console.WriteLine(sql + "" + Db.Utilities.SerializeObject
  21. // (pars.ToDictionary(it => it.ParameterName, it => it.Value)));
  22. // Console.WriteLine();
  23. //};
  24. #endregion
  25. #region 对话框
  26. Console.WriteLine("是否确定同步数据库表结构?(同名数据表将会被备份,生产环境慎用,回车确认)");
  27. var str = Console.ReadKey();
  28. if (str.Key == ConsoleKey.Enter)
  29. {
  30. Console.WriteLine("同步中,请稍后...");
  31. }
  32. else
  33. {
  34. Console.WriteLine("\r\n输入错误,已退出...");
  35. return;
  36. }
  37. #endregion
  38. //同步数据表结构
  39. db.DbMaintenance.CreateDatabase();
  40. db.CodeFirst.SetStringDefaultLength(50).BackupTable().InitTables(new Type[]
  41. {
  42. //typeof(Sys_PageFunctionPermission)
  43. //,typeof(Sys_SystemMenuAndFunction)
  44. //,typeof(Sys_SystemMenuPermission)
  45. //,typeof(Sys_JobPostAuthority)
  46. //,typeof(Sys_UserAuthority)
  47. //typeof(Crm_CustomerCert),
  48. //typeof(Crm_CustomerCompany),
  49. //typeof(Crm_CustomerFile),
  50. //typeof(Crm_DeleClient)
  51. //typeof(Crm_VisaCustomerCompany),
  52. //typeof(Crm_VisaCustomerFamily),
  53. //typeof(Crm_VisaCustomerSchool)
  54. //typeof(Grp_AirInquiry),
  55. //typeof(Grp_AirPrice),
  56. //typeof(Grp_CreditCardPayment),
  57. //typeof(Grp_DeleFile),
  58. //typeof(Grp_DelegationInfo),
  59. //typeof(Grp_DelegationJoinCustomer),
  60. //typeof(Grp_DeleMeetingNeeds),
  61. //typeof(Grp_HotelReservations),
  62. //typeof(Grp_VisaProgress),
  63. //typeof(Grp_DeleClientNeeds),
  64. //typeof(Res_AirCompany),
  65. //typeof(Res_AirTicketAgent),
  66. //typeof(Res_HotelData),
  67. //typeof(Res_ThreeCode)
  68. //typeof(Res_ScenicSpotInfo),
  69. //typeof(Res_CarGuides),
  70. //typeof(Res_CarInfo),
  71. //typeof(Res_GuidesInfo)
  72. //typeof(Res_CarData),
  73. //typeof(Res_LocalGuideData)
  74. //typeof(Grp_ScheduleInfo),
  75. //typeof(Grp_ScheduleDetailInfo),
  76. //typeof(Grp_SchedulePersonInfo)
  77. //typeof(Sys_Message),
  78. //typeof(Sys_MessageReadAuth)
  79. //typeof(Crm_DeleClient)
  80. //typeof(Crm_NewClientData)
  81. //typeof(Crm_ClientDataAndUser),
  82. //typeof(Crm_ClientDataAndBusiness),
  83. //typeof(Res_ItemDetailInfo),
  84. //typeof(Res_ItemVendor)
  85. //typeof(Res_ItemTypeInfo)
  86. //typeof(Bus_ConfItemInfo)
  87. //typeof(Bus_ConfItemListInfo)
  88. //typeof(Res_CountryFeeCost)
  89. //typeof(Res_MemoInfo),
  90. //typeof(Fin_DailyFeePayment), // 财务 - 日付申请
  91. //typeof(Fin_DailyFeePaymentContent),// 财务 - 日付申请详细类
  92. //typeof(Grp_GroupsTaskAssignment),
  93. //typeof(Grp_AirTicketReservations),
  94. //typeof(Grp_GroupCostParameter),
  95. //typeof(Grp_TeamRate), // 团组汇率
  96. //typeof(Fin_ForeignReceivables), // 对外收款账单
  97. //typeof(Fin_ProceedsReceived), // 已收款项
  98. //typeof(Fin_OtherPrice), // 其他款项
  99. //typeof(Res_OfficialActivities) //公务出访
  100. //typeof(Res_AskData),//请示数据库
  101. //typeof(Grp_DelegationEnData),
  102. //typeof(Grp_EnterExitCost),
  103. //typeof(Grp_DayAndCost),
  104. //typeof(Grp_NationalTravelFee),
  105. //typeof(Air_TicketBlackCode),
  106. //typeof(Pm_WageSheet) //人事模块 工资表单
  107. //typeof(Grp_VisaProgressCustomer),
  108. //typeof(Grp_VisaProgressCustomerPicture)
  109. //typeof(Grp_CheckBoxs) //成本选中
  110. //typeof(Grp_GroupCost) //成本数据信息
  111. //typeof(Grp_CostTypeHotelNumber)//分段房间数量
  112. //typeof(Grp_VisaInfo)
  113. //typeof(Grp_CarTouristGuideGroundReservations),
  114. //typeof(Grp_CarTouristGuideGroundReservationsContent),//
  115. //typeof(Fin_PaymentRefundAndOtherMoney)
  116. typeof(Grp_InsuranceCost)
  117. });
  118. Console.WriteLine("数据库结构同步完成!");