Sfoglia il codice sorgente

基础资料喝订单相关实体提交

Murphy 3 anni fa
parent
commit
898423ca72
31 ha cambiato i file con 2538 aggiunte e 0 eliminazioni
  1. 7 0
      .gitignore
  2. 3 0
      MicroServices/Business/Bussiness.Model/Base/BaseEntity.cs
  3. 53 0
      MicroServices/Business/Bussiness.Model/SIM/sim_base.cs
  4. 60 0
      MicroServices/Business/Bussiness.Model/SIM/sim_issue_type.cs
  5. 30 0
      MicroServices/Business/Bussiness.Model/SIM/sim_plant.cs
  6. 36 0
      MicroServices/Business/Bussiness.Model/SIM/sim_user_relation.cs
  7. 46 0
      MicroServices/Business/Bussiness.Model/Sale/wms_prdprogress.cs
  8. 190 0
      MicroServices/Business/Bussiness.Model/Sale/wms_seorder.cs
  9. 290 0
      MicroServices/Business/Bussiness.Model/Sale/wms_seorderentry.cs
  10. 82 0
      MicroServices/Business/Bussiness.Model/Sale/wms_seorderprog.cs
  11. 126 0
      MicroServices/Business/Bussiness.Model/Sale/wms_seorderreview.cs
  12. 61 0
      MicroServices/Business/Bussiness.Model/Sale/wms_shipnotice.cs
  13. 96 0
      MicroServices/Business/Bussiness.Model/Sale/wms_shipnoticelist.cs
  14. 39 0
      MicroServices/Business/Bussiness.Model/Sale/wms_shipplan.cs
  15. 107 0
      MicroServices/Business/Bussiness.Model/Sale/wms_shipplanlist.cs
  16. 56 0
      MicroServices/Business/Bussiness.Model/SystemData/sys_code.cs
  17. 49 0
      MicroServices/Business/Bussiness.Model/SystemData/sys_code_pre.cs
  18. 42 0
      MicroServices/Business/Bussiness.Model/SystemData/sys_config.cs
  19. 46 0
      MicroServices/Business/Bussiness.Model/SystemData/sys_measure_unit.cs
  20. 76 0
      MicroServices/Business/Bussiness.Model/SystemData/sys_post.cs
  21. 36 0
      MicroServices/Business/Bussiness.Model/SystemData/sys_post_staff.cs
  22. 58 0
      MicroServices/Business/Bussiness.Model/SystemData/sys_shift.cs
  23. 40 0
      MicroServices/Business/Bussiness.Model/SystemData/sys_shift_invalid_time.cs
  24. 36 0
      MicroServices/Business/Bussiness.Model/SystemData/sys_shift_shiftslice.cs
  25. 72 0
      MicroServices/Business/Bussiness.Model/SystemData/sys_shiftslice.cs
  26. 145 0
      MicroServices/Business/Bussiness.Model/SystemData/sys_staff.cs
  27. 46 0
      MicroServices/Business/Bussiness.Model/SystemData/sys_upload.cs
  28. 202 0
      MicroServices/Business/Bussiness.Model/SystemData/wms_customer.cs
  29. 304 0
      MicroServices/Business/Bussiness.Model/SystemData/wms_supplier.cs
  30. 50 0
      sql/MySql/base_menu.sql
  31. 54 0
      sql/MySql/base_role_menu.sql

+ 7 - 0
.gitignore

@@ -218,3 +218,10 @@ MicroServices/Business/Business.Common.Utility/obj/Debug/net6.0/Business.Common.
 MicroServices/Business/Business.Common.Utility/obj/Debug/net6.0/Business.Common.Utility.csproj.AssemblyReference.cache
 MicroServices/Business/Business.Common.Utility/obj/Debug/net6.0/Business.Common.Utility.GeneratedMSBuildEditorConfig.editorconfig
 MicroServices/Business/Business.Common.Utility/obj/Debug/net6.0/Business.Common.Utility.GlobalUsings.g.cs
+/MicroServices/Business/Business.Common.Utility/bin/Debug/net6.0
+/MicroServices/Business/Business.Common.Utility/obj/Debug/net6.0/ref
+/MicroServices/Business/Business.Common.Utility/obj/Debug/net6.0/refint
+/MicroServices/Business/Business.Common.Utility/obj/Debug/net6.0/Business.Common.Utility.pdb
+/MicroServices/Business/Business.Common.Utility/obj/Debug/net6.0/Business.Common.Utility.csproj.FileListAbsolute.txt
+/MicroServices/Business/Business.Common.Utility/obj/Debug/net6.0/Business.Common.Utility.csproj.CoreCompileInputs.cache
+/MicroServices/Business/Business.Common.Utility/obj/Debug/net6.0/Business.Common.Utility.dll

+ 3 - 0
MicroServices/Business/Bussiness.Model/Base/BaseEntity.cs

@@ -5,6 +5,7 @@ using System.Text;
 using System.Threading.Tasks;
 using Volo.Abp.MultiTenancy;
 using Volo.Abp;
+using System.ComponentModel.DataAnnotations;
 
 namespace Business.Models
 {
@@ -43,6 +44,7 @@ namespace Business.Models
         /// <summary>
         /// 企业ID
         /// </summary>
+        [Required]
         public virtual long tenant_id { get; set; }
 
         /// <summary>
@@ -58,6 +60,7 @@ namespace Business.Models
         /// <summary>
         /// 删除标识
         /// </summary>
+        [Required]
         public bool IsDeleted { get; set; }
     }
 }

+ 53 - 0
MicroServices/Business/Bussiness.Model/SIM/sim_base.cs

@@ -0,0 +1,53 @@
+using Business.EntityFrameworkCore;
+using Business.Models;
+using System;
+using System.Collections.Generic;
+using System.ComponentModel.DataAnnotations;
+using System.Globalization;
+using System.Linq;
+using System.Net.NetworkInformation;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Bussiness.Model.SystemData
+{
+    /// <summary>
+    /// sim基本表
+    /// </summary>
+    public class sim_base:BaseEntity
+    {
+        /// <summary>
+        /// 主键id
+        /// </summary>
+        [Key]
+        public long sim_id { get; set; }
+
+        /// <summary>
+        /// sim等级
+        /// </summary>
+        [StringLength(255)]
+        public string sim_grade { get; set; }
+
+        /// <summary>
+        /// sim层级顺序
+        /// </summary>
+        public int sim_level { get; set; }
+
+        /// <summary>
+        /// 上升周期
+        /// </summary>
+        [DecimalPrecision(10,0)]
+        public decimal rise_cycle { get; set; }
+
+        /// <summary>
+        /// 间隔天数
+        /// </summary>
+        [DecimalPrecision(10, 0)]
+        public decimal interval_days { get; set; }
+
+        /// <summary>
+        /// 上升时间
+        /// </summary>
+        public DateTime rise_time { get; set; }
+    }
+}

+ 60 - 0
MicroServices/Business/Bussiness.Model/SIM/sim_issue_type.cs

@@ -0,0 +1,60 @@
+using Business.Models;
+using System;
+using System.Collections.Generic;
+using System.ComponentModel.DataAnnotations;
+using System.Globalization;
+using System.Linq;
+using System.Net.NetworkInformation;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Bussiness.Model.SystemData
+{
+    /// <summary>
+    /// sim事项类别表
+    /// </summary>
+    public class sim_issue_type: BaseEntity
+    {
+        /// <summary>
+        /// 主键id
+        /// </summary>
+        [Key]
+        public long issue_type_id { get; set; }
+
+        /// <summary>
+        /// 类别代码
+        /// </summary>
+        [StringLength(255)]
+        public string type_code { get; set; }
+
+        /// <summary>
+        /// 类别名称
+        /// </summary>
+        [StringLength(255)]
+        public string type_name { get; set; }
+
+        /// <summary>
+        /// 应用场景
+        /// </summary>
+        [StringLength(255)]
+        public string app_scenario { get; set; }
+
+        /// <summary>
+        /// 问题等级
+        /// </summary>
+        [StringLength(255)]
+        public string issue_grade { get; set; }
+
+        /// <summary>
+        /// 责任人
+        /// </summary>
+        [StringLength(255)]
+        public string duty_person { get; set; }
+
+        /// <summary>
+        /// 责任部门id
+        /// </summary>
+        [StringLength(255)]
+        public long duty_dept { get; set; }
+    }
+}

+ 30 - 0
MicroServices/Business/Bussiness.Model/SIM/sim_plant.cs

@@ -0,0 +1,30 @@
+using Business.Models;
+using System;
+using System.Collections.Generic;
+using System.ComponentModel.DataAnnotations;
+using System.Globalization;
+using System.Linq;
+using System.Net.NetworkInformation;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Bussiness.Model.SystemData
+{
+    /// <summary>
+    /// sim事项表
+    /// </summary>
+    public class sim_plant:BaseEntity
+    {
+        /// <summary>
+        /// 主键id
+        /// </summary>
+        [Key]
+        public long plant_id { get; set; }
+
+        /// <summary>
+        /// 事项名称
+        /// </summary>
+        [StringLength(255)]
+        public string plant_name { get; set; }
+    }
+}

+ 36 - 0
MicroServices/Business/Bussiness.Model/SIM/sim_user_relation.cs

@@ -0,0 +1,36 @@
+using Business.EntityFrameworkCore;
+using Business.Models;
+using System;
+using System.Collections.Generic;
+using System.ComponentModel.DataAnnotations;
+using System.Globalization;
+using System.Linq;
+using System.Net.NetworkInformation;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Bussiness.Model.SystemData
+{
+    /// <summary>
+    /// sim用户关联表
+    /// </summary>
+    public class sim_user_relation: BaseEntity
+    {
+        /// <summary>
+        /// 主键id
+        /// </summary>
+        [Key]
+        public long id { get; set; }
+
+        /// <summary>
+        /// base_sim表ID
+        /// </summary>
+        public long sim_id { get; set; }
+
+        /// <summary>
+        /// 用户id
+        /// </summary>
+        public long user_id { get; set; }
+
+    }
+}

+ 46 - 0
MicroServices/Business/Bussiness.Model/Sale/wms_prdprogress.cs

@@ -0,0 +1,46 @@
+using Business.Models;
+using System;
+using System.Collections.Generic;
+using System.ComponentModel.DataAnnotations;
+using System.Globalization;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Bussiness.Model.Tech
+{
+    /// <summary>
+    ///进度字典
+    /// </summary>
+    public class wms_prdprogress: BaseEntity
+    {
+        /// <summary>
+        /// 进度字典id
+        /// </summary>
+        [Key]
+        public long progress_id { get; set; }
+
+        /// <summary>
+        /// 进度类型
+        /// </summary>
+        [StringLength(255)]
+        public string prdprog_type { get; set; }
+
+        /// <summary>
+        /// 进度名称
+        /// </summary>
+        [StringLength(255)]
+        public string prdprog_name { get; set; }
+
+        /// <summary>
+        /// 进度顺序
+        /// </summary>
+        [Required]
+        public int prdprog_seq { get; set; }
+
+        /// <summary>
+        /// 进度状态1启用-1停用
+        /// </summary>
+        public bool state { get; set; }
+    }
+}

+ 190 - 0
MicroServices/Business/Bussiness.Model/Sale/wms_seorder.cs

@@ -0,0 +1,190 @@
+using Business.EntityFrameworkCore;
+using Business.Models;
+using System;
+using System.Collections.Generic;
+using System.ComponentModel.DataAnnotations;
+using System.Globalization;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using Volo.Abp.AuditLogging;
+
+namespace Bussiness.Model.Tech
+{
+    /// <summary>
+    ///销售订单表
+    /// </summary>
+    public class wms_seorder : BaseEntity
+    {
+        /// <summary>
+        /// 销售订单id
+        /// </summary>
+        [Key]
+        public long seorder_id { get; set; }
+
+        /// <summary>
+        /// 订单编号
+        /// </summary>
+        [StringLength(50)]
+        public string bill_no { get; set; }
+
+        /// <summary>
+        /// 订单类别(销售、计划)
+        /// </summary>
+        public int order_type { get; set; }
+
+        /// <summary>
+        /// 贸易类型
+        /// </summary>
+        public int trade_type { get; set; }
+
+        /// <summary>
+        /// 销售订单类型
+        /// </summary>
+        public int sale_style { get; set; }
+
+        /// <summary>
+        /// 销售订单类型编码
+        /// </summary>
+        [StringLength(80)]
+        public string sale_style_no { get; set; }
+
+        /// <summary>
+        /// 客户id
+        /// </summary>
+        public int custom_id { get; set; }
+
+        /// <summary>
+        /// 客户名称
+        /// </summary>
+        public int custom_name { get; set; }
+
+        /// <summary>
+        /// 客户编码
+        /// </summary>
+        [StringLength(80)]
+        public string custom_no { get; set; }
+
+        /// <summary>
+        /// 客户级别
+        /// </summary>
+        [StringLength(80)]
+        public string custom_level { get; set; }
+
+        /// <summary>
+        /// 签订日期
+        /// </summary>
+        public DateTime date { get; set; }
+
+        /// <summary>
+        /// 采购下单日期
+        /// </summary>
+        public DateTime rdate { get; set; }
+  
+        /// <summary>
+        /// 加急级别
+        /// </summary>
+        public int urgent { get; set; }
+
+        /// <summary>
+        /// 币种
+        /// </summary>
+        [StringLength(50)]
+        public int currency { get; set; }
+
+        /// <summary>
+        /// 汇率
+        /// </summary>
+        [DecimalPrecision(20,8)]
+        public decimal exchange_rate { get; set; }
+
+
+        /// <summary>
+        /// 制单人
+        /// </summary>
+        [StringLength(50)]
+        public string biller { get; set; }
+
+        /// <summary>
+        /// 业务员工号
+        /// </summary>
+        [StringLength(50)]
+        public string emp_no { get; set; }
+
+        /// <summary>
+        /// 业务员名称
+        /// </summary>
+        [StringLength(50)]
+        public string emp_name { get; set; }
+
+        /// <summary>
+        /// 审核人
+        /// </summary>
+        [StringLength(50)]
+        public string auditor { get; set; }
+
+        /// <summary>
+        /// 审核日期
+        /// </summary>
+        public DateTime audit_date { get; set; }
+
+        /// <summary>
+        /// 是否关闭
+        /// </summary>
+        public int status { get; set; }
+
+        /// <summary>
+        /// 订单状态
+        /// </summary>
+        public bool closed { get; set; }
+
+        /// <summary>
+        /// 操作时间
+        /// </summary>
+        public DateTime op_time { get; set; }
+
+        /// <summary>
+        /// 项目名称
+        /// </summary>
+        [StringLength(255)]
+        public string bill_from { get; set; }
+
+        /// <summary>
+        /// 提交人id
+        /// </summary>
+        public long project_name { get; set; }
+
+        /// <summary>
+        /// 项目编号
+        /// </summary>
+        [StringLength(255)]
+        public string project_code { get; set; }
+
+        /// <summary>
+        /// 销售出库类型
+        /// </summary>
+        public int out_stock_type { get; set; }
+
+        /// <summary>
+        /// 销售部门id
+        /// </summary>
+        public long sale_dept_id { get; set; }
+
+        /// <summary>
+        /// 销售部门名称
+        /// </summary>
+        [StringLength(80)]
+        public string sale_dept_name { get; set; }
+
+        /// <summary>
+        /// 销售部门编号
+        /// </summary>
+        [StringLength(255)]
+        public string sale_dept_code { get; set; }
+
+        /// <summary>
+        /// 创建部门id
+        /// </summary>
+        public long create_dept { get; set; }
+    }
+}

+ 290 - 0
MicroServices/Business/Bussiness.Model/Sale/wms_seorderentry.cs

@@ -0,0 +1,290 @@
+using Business.EntityFrameworkCore;
+using Business.Models;
+using System;
+using System.Collections.Generic;
+using System.ComponentModel.DataAnnotations;
+using System.Diagnostics;
+using System.Globalization;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using Volo.Abp.AuditLogging;
+using Volo.Abp.Specifications;
+
+namespace Bussiness.Model.Tech
+{
+    /// <summary>
+    ///销售订单明细表
+    /// </summary>
+    public class wms_seorderentry : BaseEntity
+    {
+        /// <summary>
+        /// 销售订单明细表id
+        /// </summary>
+        [Key]
+        public long seorderentry_id { get; set; }
+
+        /// <summary>
+        /// 销售订单id
+        /// </summary>
+        public long seorder_id { get; set; }
+
+        /// <summary>
+        /// 销售订单编号
+        /// </summary>
+        [StringLength(50)]
+        public long bill_no { get; set; }
+
+        /// <summary>
+        /// 行号
+        /// </summary>
+        public int entry_seq { get; set; }
+
+        /// <summary>
+        /// 对应代码
+        /// </summary>
+        [StringLength(255)]
+        public string map_number { get; set; }
+
+        /// <summary>
+        /// 代码名称
+        /// </summary>
+        [StringLength(255)]
+        public string map_name { get; set; }
+
+        /// <summary>
+        /// 产品代码
+        /// </summary>
+        [StringLength(255)]
+        public string item_number { get; set; }
+
+        /// <summary>
+        /// FMS旧料号
+        /// </summary>
+        [StringLength(255)]
+        public string fms_number { get; set; }
+
+        /// <summary>
+        /// 产品名称
+        /// </summary>
+        [StringLength(255)]
+        public int item_name { get; set; }
+
+        /// <summary>
+        /// 规格型号
+        /// </summary>
+        [StringLength(255)]
+        public int specification { get; set; }
+
+        /// <summary>
+        /// 加急级别
+        /// </summary>
+        public int urgent { get; set; }
+
+        /// <summary>
+        /// BOM编号
+        /// </summary>
+        [StringLength(255)]
+        public string bom_number { get; set; }
+
+        /// <summary>
+        /// 单位
+        /// </summary>
+        [StringLength(50)]
+        public string unit { get; set; }
+
+        /// <summary>
+        /// 订单数量
+        /// </summary>
+        [DecimalPrecision(20,8)]
+        public decimal qty { get; set; }
+
+        /// <summary>
+        /// 单价
+        /// </summary>
+        [DecimalPrecision(20, 8)]
+        public decimal price { get; set; }
+
+        /// <summary>
+        /// 含税单价
+        /// </summary>
+        [DecimalPrecision(20, 8)]
+        public decimal tax_price { get; set; }
+
+        /// <summary>
+        /// 金额
+        /// </summary>
+        [DecimalPrecision(20, 8)]
+        public decimal amount { get; set; }
+
+        /// <summary>
+        /// 税率
+        /// </summary>
+        [DecimalPrecision(20, 8)]
+        public decimal tax_rate { get; set; }
+
+        /// <summary>
+        /// 折扣率
+        /// </summary>
+        [DecimalPrecision(20, 8)]
+        public decimal discount_rate { get; set; }
+
+        /// <summary>
+        /// 折扣额
+        /// </summary>
+        [DecimalPrecision(20, 8)]
+        public decimal discount_amount { get; set; }
+
+        /// <summary>
+        /// 实际含税单价
+        /// </summary>
+        [DecimalPrecision(20, 8)]
+        public decimal aux_price_discount { get; set; }
+
+        /// <summary>
+        /// 销项税额
+        /// </summary>
+        [DecimalPrecision(20, 8)]
+        public decimal tax_amtount { get; set; }
+
+        /// <summary>
+        /// 价税合计
+        /// </summary>
+        [DecimalPrecision(20, 8)]
+        public decimal total_amount { get; set; }
+
+        /// <summary>
+        /// 客户要求交期
+        /// </summary>
+        public DateTime plan_date { get; set; }
+
+        /// <summary>
+        /// 最终交货日期
+        /// </summary>
+        public DateTime date { get; set; }
+
+        /// <summary>
+        /// 计划员
+        /// </summary>
+        [StringLength(50)]
+        public string planner_name { get; set; }
+
+        /// <summary>
+        /// 计划员_工号
+        /// </summary>
+        [StringLength(50)]
+        public string planner_no { get; set; }
+
+        /// <summary>
+        /// 备注
+        /// </summary>
+        [StringLength(255)]
+        public string remark { get; set; }
+
+        /// <summary>
+        /// 源单编号
+        /// </summary>
+        [StringLength(50)]
+        public string soure_bill_no { get; set; }
+
+        /// <summary>
+        /// 客户订单号
+        /// </summary>
+        [StringLength(50)]
+        public string custom_order_bill_no { get; set; }
+
+        /// <summary>
+        /// 客户订单行号
+        /// </summary>
+        public int custom_order_entryid { get; set; }
+
+        /// <summary>
+        /// 系统建议交期(产能)
+        /// </summary>
+        public DateTime sys_capacity_date { get; set; }
+
+        /// <summary>
+        ///调整建议交期
+        /// </summary>
+        public DateTime adjust_date { get; set; }
+
+        /// <summary>
+        ///调整建议交期
+        /// </summary>
+        public bool mrp_closed { get; set; }
+
+        /// <summary>
+        /// 操作时间
+        /// </summary>
+        public DateTime op_time { get; set; }
+
+        /// <summary>
+        /// 客户料号
+        /// </summary>
+        [StringLength(50)]
+        public string custom_order_itemno { get; set; }
+
+        /// <summary>
+        /// 数据状态标识 0停用 1启用
+        /// </summary>
+        public bool state { get; set; }
+
+        /// <summary>
+        /// 评审状态
+        /// </summary>
+        public int rstate { get; set; }
+
+        /// <summary>
+        /// 评审次数
+        /// </summary>
+        public int rnumber { get; set; }
+
+        /// <summary>
+        /// 订单进度
+        /// </summary>
+        [StringLength(255)]
+        public string progress { get; set; }
+
+        /// <summary>
+        /// 发货通知单数量
+        /// </summary>
+        [DecimalPrecision(20, 8)]
+        public decimal deliver_notice_count { get; set; }
+
+        /// <summary>
+        /// 发货数量(已出库数量)
+        /// </summary>
+        [DecimalPrecision(20, 8)]
+        public decimal deliver_count { get; set; }
+
+        /// <summary>
+        /// 业务员工号
+        /// </summary>
+        [StringLength(255)]
+        public string se_reject_reason { get; set; }
+
+        /// <summary>
+        /// 出库类型
+        /// </summary>
+        [StringLength(50)]
+        public string out_stock_type { get; set; }
+
+        /// <summary>
+        /// 是否完成检测,0未完成,1完成
+        /// </summary>
+        public bool is_checked { get; set; }
+
+        /// <summary>
+        /// 系统建议交期(物料)
+        /// </summary>
+        public DateTime sys_material_date { get; set; }
+
+        /// <summary>
+        /// 合同编号
+        /// </summary>
+        public string contract_no { get; set; }
+
+        /// </summary>
+        public long create_dept { get; set; }
+    }
+}

+ 82 - 0
MicroServices/Business/Bussiness.Model/Sale/wms_seorderprog.cs

@@ -0,0 +1,82 @@
+using Business.Models;
+using System;
+using System.Collections.Generic;
+using System.ComponentModel.DataAnnotations;
+using System.Globalization;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Bussiness.Model.Tech
+{
+    /// <summary>
+    ///销售订单进度表
+    /// </summary>
+    public class wms_seorderprog : BaseEntity
+    {
+        /// <summary>
+        /// 销售订单进度id
+        /// </summary>
+        [Key]
+        public long seorderprog_id { get; set; }
+
+        /// <summary>
+        /// 销售订单id
+        /// </summary>
+        [Required]
+        public long seorder_id { get; set; }
+
+        /// <summary>
+        /// 销售订单编号
+        /// </summary>
+        [StringLength(80)]
+        public string bill_no { get; set; }
+
+        /// <summary>
+        /// 销售订单行号
+        /// </summary>
+        public int entry_seq { get; set; }
+
+        /// <summary>
+        /// 进度类型
+        /// </summary>
+        public int seprog_type { get; set; }
+
+        /// <summary>
+        /// 进度阶段
+        /// </summary>
+        [StringLength(50)]
+        public string seprog_stage { get; set; }
+
+        /// <summary>
+        /// 进度阶段id
+        /// </summary>
+        public long seprog_stage_id { get; set; }
+
+        /// <summary>
+        /// 开始时间
+        /// </summary>
+        public DateTime seprog_stime { get; set; }
+
+        /// <summary>
+        /// 完成时间
+        /// </summary>
+        public DateTime seprog_etime { get; set; }
+
+        /// <summary>
+        /// 提交人id
+        /// </summary>
+        public long seprog_by_id { get; set; }
+
+        /// <summary>
+        /// 提交人姓名
+        /// </summary>
+        [StringLength(80)]
+        public string seprog_by_name { get; set; }
+
+        /// <summary>
+        /// 创建部门id
+        /// </summary>
+        public long create_dept { get; set; }
+    }
+}

+ 126 - 0
MicroServices/Business/Bussiness.Model/Sale/wms_seorderreview.cs

@@ -0,0 +1,126 @@
+using Business.Models;
+using System;
+using System.Collections.Generic;
+using System.ComponentModel.DataAnnotations;
+using System.Globalization;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Bussiness.Model.Tech
+{
+    /// <summary>
+    ///销售订单评审表
+    /// </summary>
+    public class wms_seorderreview : BaseEntity
+    {
+        /// <summary>
+        /// 销售订单评审id
+        /// </summary>
+        [Key]
+        public long review_id { get; set; }
+
+        /// <summary>
+        /// 销售订单id
+        /// </summary>
+        [Required]
+        public long seorder_id { get; set; }
+
+        /// <summary>
+        /// 业务类型
+        /// </summary>
+        [Required]
+        public string review_type { get; set; }
+
+        /// <summary>
+        /// 销售订单编号
+        /// </summary>
+        [StringLength(80)]
+        public string bill_no { get; set; }
+
+        /// <summary>
+        /// 销售订单行号
+        /// </summary>
+        public int entry_seq { get; set; }
+
+        /// <summary>
+        /// 提交时间
+        /// </summary>
+        public DateTime review_stime { get; set; }
+
+        /// <summary>
+        /// 提交人id
+        /// </summary>
+        public long review_by_id { get; set; }
+
+        /// <summary>
+        /// 提交人姓名
+        /// </summary>
+        [StringLength(80)]
+        public string review_by_name { get; set; }
+
+
+        /// <summary>
+        /// 评审时间
+        /// </summary>
+        public DateTime review_time { get; set; }
+
+        /// <summary>
+        /// 评审人id
+        /// </summary>
+        public long reviewer_id { get; set; }
+
+        /// <summary>
+        /// 评审人姓名
+        /// </summary>
+        [StringLength(80)]
+        public string reviewer_name { get; set; }
+
+        /// <summary>
+        /// 评审结果
+        /// </summary>
+        [StringLength(255)]
+        public string review_result { get; set; }
+
+        /// <summary>
+        /// 拒绝原因
+        /// </summary>
+        [StringLength(255)]
+        public string reject_reason { get; set; }
+
+        /// <summary>
+        /// 拒绝等级
+        /// </summary>
+        [StringLength(255)]
+        public string review_reject_level { get; set; }
+
+        /// <summary>
+        /// 拒绝备注
+        /// </summary>
+        [StringLength(255)]
+        public string review_reject_remark { get; set; }
+
+        /// <summary>
+        /// 可接受交期
+        /// </summary>
+        [StringLength(255)]
+        public string review_adjust_time { get; set; }
+
+        /// <summary>
+        /// 标题
+        /// </summary>
+        [StringLength(255)]
+        public string review_title { get; set; }
+
+        /// <summary>
+        /// 当前审批步骤id
+        /// </summary>
+        public long audit_procedure_id { get; set; }
+
+        /// <summary>
+        /// 当前审批步骤名称
+        /// </summary>
+        [StringLength(255)]
+        public string audit_procedure_name { get; set; }     
+    }
+}

+ 61 - 0
MicroServices/Business/Bussiness.Model/Sale/wms_shipnotice.cs

@@ -0,0 +1,61 @@
+using Business.Models;
+using System;
+using System.Collections.Generic;
+using System.ComponentModel.DataAnnotations;
+using System.Globalization;
+using System.Linq;
+using System.Net;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Bussiness.Model.Tech
+{
+    /// <summary>
+    /// 发运通知单
+    /// </summary>
+    public class wms_shipnotice : BaseEntity
+    {
+        /// <summary>
+        /// 发运通知单主键id
+        /// </summary>
+        [Key]
+        public long shipnotice_id { get; set; }
+
+        /// <summary>
+        /// 发运通知单号
+        /// </summary>
+        [StringLength(80)]
+        [Required]
+        public string shipnotice_no { get; set; }
+
+        /// <summary>
+        /// 发货计划id
+        /// </summary>
+        [Required]
+        public long shipplan_id { get; set; }
+
+        /// <summary>
+        /// 发货计划号
+        /// </summary>
+        [StringLength(80)]
+        public string shipplan_no { get; set; }
+
+        /// <summary>
+        /// 发运时间
+        /// </summary>
+        [Required]
+        public DateTime shipnotice_date { get; set; }
+
+        /// <summary>
+        /// 状态
+        /// </summary>
+        [Required]
+        public int state { get; set; }
+
+        /// <summary>
+        /// 发运地址
+        /// </summary>
+        [StringLength(200)]
+        public string address { get; set; }
+    }
+}

+ 96 - 0
MicroServices/Business/Bussiness.Model/Sale/wms_shipnoticelist.cs

@@ -0,0 +1,96 @@
+using Business.EntityFrameworkCore;
+using Business.Models;
+using System;
+using System.Collections.Generic;
+using System.ComponentModel.DataAnnotations;
+using System.Globalization;
+using System.Linq;
+using System.Net;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Bussiness.Model.Tech
+{
+    /// <summary>
+    /// 发运通知单详情清单
+    /// </summary>
+    public class wms_shipnoticelist : BaseEntity
+    {
+        /// <summary>
+        /// 发运通知单详情id
+        /// </summary>
+        [Key]
+        public long shipnoticelist_id { get; set; }
+
+        /// <summary>
+        /// 发运通知单id
+        /// </summary>
+        [StringLength(80)]
+        public long shipnotice_id { get; set; }
+
+        /// <summary>
+        /// 发货详情id
+        /// </summary>
+        public long shipplanlist_id { get; set; }
+
+
+        /// <summary>
+        /// 销售单id
+        /// </summary>
+        public long shipplanl_soid { get; set; }
+
+
+        /// <summary>
+        /// 销售单号
+        /// </summary>
+        [StringLength(80)]
+        public string shipplanl_sono { get; set; }
+
+        /// <summary>
+        /// 销售单行号
+        /// </summary>
+        public int shipplanl_soeid { get; set; }
+
+        /// <summary>
+        /// 客户id
+        /// </summary>
+        public long shipnotice_custid { get; set; }
+
+        /// <summary>
+        /// 客户编号
+        /// </summary>
+        [StringLength(80)]
+        public string shipnotice_custno { get; set; }
+
+        /// <summary>
+        /// 客户名称
+        /// </summary>
+        [StringLength(255)]
+        public string shipnotice_custname { get; set; }
+
+        /// <summary>
+        /// 计划发货数量
+        /// </summary>
+        [DecimalPrecision(20, 10)]
+        public decimal shipplanl_iqty { get; set; }
+
+        /// <summary>
+        /// 实际发货数量
+        /// </summary>
+        [DecimalPrecision(20, 10)]
+        public decimal shipplanl_fqty { get; set; }
+
+        /// <summary>
+        /// 状态
+        /// </summary>
+        [Required]
+        public int state { get; set; }
+
+        /// <summary>
+        /// 发运地址
+        /// </summary>
+        [StringLength(200)]
+        public string address { get; set; }
+
+    }
+}

+ 39 - 0
MicroServices/Business/Bussiness.Model/Sale/wms_shipplan.cs

@@ -0,0 +1,39 @@
+using Business.Models;
+using System;
+using System.Collections.Generic;
+using System.ComponentModel.DataAnnotations;
+using System.Globalization;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Bussiness.Model.Tech
+{
+    /// <summary>
+    /// 发货计划表
+    /// </summary>
+    public class wms_shipplan : BaseEntity
+    {
+        /// <summary>
+        /// 发货计划表主键
+        /// </summary>
+        [Key]
+        public long shipplan_id { get; set; }
+
+        /// <summary>
+        /// 发货计划编号
+        /// </summary>
+        [StringLength(80)]
+        public string shipplan_no { get; set; }
+
+        /// <summary>
+        /// 发货计划时间
+        /// </summary>
+        public DateTime shipplan_date { get; set; }
+
+        /// <summary>
+        /// 状态
+        /// </summary>
+        public int state { get; set; }
+    }
+}

+ 107 - 0
MicroServices/Business/Bussiness.Model/Sale/wms_shipplanlist.cs

@@ -0,0 +1,107 @@
+using Business.EntityFrameworkCore;
+using Business.Models;
+using System;
+using System.Collections.Generic;
+using System.ComponentModel.DataAnnotations;
+using System.Globalization;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Bussiness.Model.Tech
+{
+    /// <summary>
+    /// 发货计划详情清单
+    /// </summary>
+    public class wms_shipplanlist : BaseEntity
+    {
+        /// <summary>
+        /// 发货详情主键id
+        /// </summary>
+        [Key]
+        public long shipplanlist_id { get; set; }
+
+        /// <summary>
+        /// 发货计划id
+        /// </summary>
+        [Required]
+        public long shipplan_id { get; set; }
+
+        /// <summary>
+        /// 发货计划时间
+        /// </summary>
+        public DateTime shipplan_date { get; set; }
+
+        /// <summary>
+        /// 销售单id
+        /// </summary>
+        [Required]
+        public long shipplanl_soid { get; set; }
+
+
+        /// <summary>
+        /// 销售单号
+        /// </summary>
+        [StringLength(80)]
+        public string shipplanl_sono { get; set; }
+
+        /// <summary>
+        /// 行号
+        /// </summary>
+        public int shipplanl_soeid { get; set; }
+
+        /// <summary>
+        /// 物料id
+        /// </summary>
+        public long icitem_id { get; set; }
+
+        /// <summary>
+        /// 物料编码
+        /// </summary>
+        [StringLength(80)]
+        public string item_number { get; set; }
+
+        /// <summary>
+        /// 物料名称
+        /// </summary>
+        [StringLength(255)]
+        public string item_name { get; set; }
+
+        /// <summary>
+        /// 发货数量
+        /// </summary>
+        [DecimalPrecision(20, 10)]
+        public decimal shipplanl_iqty { get; set; }
+
+
+        /// <summary>
+        /// 发货日期
+        /// </summary>
+        [DecimalPrecision(20, 10)]
+        public DateTime shipplanl_sdate { get; set; }
+
+
+        /// <summary>
+        /// 客户id
+        /// </summary>
+        public long shipnotice_custid { get; set; }
+
+        /// <summary>
+        /// 客户编号
+        /// </summary>
+        [StringLength(80)]
+        public string shipnotice_custno { get; set; }
+
+        /// <summary>
+        /// 客户名称
+        /// </summary>
+        [StringLength(255)]
+        public string shipnotice_custname { get; set; }
+
+        /// <summary>
+        /// 状态
+        /// </summary>
+        [Required]
+        public int state { get; set; }
+    }
+}

+ 56 - 0
MicroServices/Business/Bussiness.Model/SystemData/sys_code.cs

@@ -0,0 +1,56 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel.DataAnnotations;
+using System.Globalization;
+using System.Linq;
+using System.Net.NetworkInformation;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Bussiness.Model.SystemData
+{
+    /// <summary>
+    /// 系统编码表
+    /// </summary>
+    public class sys_code
+    {
+        /// <summary>
+        /// 主键id
+        /// </summary>
+        [Key]
+        public long sys_code_id { get; set; }
+
+        /// <summary>
+        /// 编码生成名称
+        /// </summary>
+        [StringLength(50)]
+         [Required]
+        public string code_name { get; set; }
+
+        /// <summary>
+        /// 编码生成规则
+        /// </summary>
+        [Required]
+        [StringLength(50)]
+        public string code_rule { get; set; }
+
+        /// <summary>
+        /// 编码生成时间
+        /// </summary>
+        [Required]
+        public DateTime code_date { get; set; }
+
+        /// <summary>
+        /// 编码生成当前值
+        /// </summary>
+        [Required]
+        public long code_value { get; set; }
+
+        /// <summary>
+        /// 中文注释
+        /// </summary>
+        [StringLength(255)]
+        public string chinese_name { get; set; }
+
+    }
+}

+ 49 - 0
MicroServices/Business/Bussiness.Model/SystemData/sys_code_pre.cs

@@ -0,0 +1,49 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel.DataAnnotations;
+using System.Globalization;
+using System.Linq;
+using System.Net.NetworkInformation;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Bussiness.Model.SystemData
+{
+    /// <summary>
+    /// 系统编码前置表
+    /// </summary>
+    public class sys_code_pre
+    {
+        /// <summary>
+        /// 主键id
+        /// </summary>
+        [Key]
+        public long id { get; set; }
+
+        /// <summary>
+        /// 编码生成名称
+        /// </summary>
+        [StringLength(50)]
+         [Required]
+        public string code_name { get; set; }
+
+        /// <summary>
+        /// 编码生成前置名称
+        /// </summary>
+        [Required]
+        [StringLength(50)]
+        public string pre_name { get; set; }
+
+        /// <summary>
+        /// 编码生成时间
+        /// </summary>
+        [Required]
+        public DateTime code_date { get; set; }
+
+        /// <summary>
+        /// 编码生成当前值
+        /// </summary>
+        [Required]
+        public long code_value { get; set; }
+    }
+}

+ 42 - 0
MicroServices/Business/Bussiness.Model/SystemData/sys_config.cs

@@ -0,0 +1,42 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel.DataAnnotations;
+using System.Globalization;
+using System.Linq;
+using System.Net.NetworkInformation;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Bussiness.Model.SystemData
+{
+    /// <summary>
+    /// 系统配置表
+    /// </summary>
+    public class sys_config
+    {
+        /// <summary>
+        /// 主键id
+        /// </summary>
+        [Key]
+        public long config_id { get; set; }
+
+        /// <summary>
+        /// 配置类型
+        /// </summary>
+        [StringLength(50)]
+        public string type { get; set; }
+
+        /// <summary>
+        /// 账务状态(0-关帐,1-开帐)
+        public bool financeis_close { get; set; }
+
+        /// <summary>
+        /// 下一个开帐日期
+        /// </summary>
+        public DateTime next_open_date { get; set; }
+
+        /// <summary>
+        /// 是否显示(0不显示、1显示)
+        public bool is_show { get; set; }
+    }
+}

+ 46 - 0
MicroServices/Business/Bussiness.Model/SystemData/sys_measure_unit.cs

@@ -0,0 +1,46 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel.DataAnnotations;
+using System.Globalization;
+using System.Linq;
+using System.Net.NetworkInformation;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Bussiness.Model.SystemData
+{
+    /// <summary>
+    /// 计量单位信息表
+    /// </summary>
+    public class measure_unit
+    {
+        /// <summary>
+        /// 主键id
+        /// </summary>
+        [Key]
+        public long unit_id { get; set; }
+
+        /// <summary>
+        /// 单位名称
+        /// </summary>
+        [StringLength(50)]
+        public string unit_name { get; set; }
+
+        /// <summary>
+        /// 单位编码
+        /// </summary>
+        [StringLength(50)]
+        public string unit_code { get; set; }
+
+        /// <summary>
+        /// 是否是标准单位0-否,1是
+        /// </summary>
+        public bool is_standard { get; set; }
+
+        /// <summary>
+        /// 状态:0-无效,1-有效
+        /// </summary>
+        public bool status { get; set; }
+
+    }
+}

+ 76 - 0
MicroServices/Business/Bussiness.Model/SystemData/sys_post.cs

@@ -0,0 +1,76 @@
+using Business.Models;
+using System;
+using System.Collections.Generic;
+using System.ComponentModel.DataAnnotations;
+using System.Globalization;
+using System.Linq;
+using System.Net.NetworkInformation;
+using System.Numerics;
+using System.Reflection;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Bussiness.Model.SystemData
+{
+    /// <summary>
+    /// 岗位表
+    /// </summary>
+    public class sys_post: BaseEntity
+    {
+        /// <summary>
+        /// 主键id
+        /// </summary>
+        [Key]
+        public long post_id { get; set; }
+
+        /// <summary>
+        /// 岗位编码
+        /// </summary>
+        [StringLength(50)]
+        public string post_code { get; set; }
+
+        /// <summary>
+        /// 岗位名称
+        /// </summary>
+        [StringLength(255)]
+        public string post_name { get; set; }
+
+        /// <summary>
+        /// 岗位备注
+        /// </summary>
+        [StringLength(255)]
+        public string post_remark { get; set; }
+
+        /// <summary>
+        /// 岗位级别
+        /// </summary>
+        public int post_level { get; set; }
+
+        /// <summary>
+        /// 岗位路径
+        /// </summary>
+        [StringLength(255)]
+        public string post_path { get; set; }
+
+        /// <summary>
+        /// 岗位排序
+        /// </summary>
+        public int post_sort { get; set; }
+
+        /// <summary>
+        /// 上级岗位
+        /// </summary>
+        public long parent_id { get; set; }
+
+        /// <summary>
+        /// 部门id
+        /// </summary>
+        public long dept_id { get; set; }
+
+        /// <summary>
+        /// 数据状态标识 1启用 0停用
+        /// </summary>
+        [StringLength(255)]
+        public bool state { get; set; }
+    }
+}

+ 36 - 0
MicroServices/Business/Bussiness.Model/SystemData/sys_post_staff.cs

@@ -0,0 +1,36 @@
+using Business.Models;
+using System;
+using System.Collections.Generic;
+using System.ComponentModel.DataAnnotations;
+using System.Globalization;
+using System.Linq;
+using System.Net.NetworkInformation;
+using System.Numerics;
+using System.Reflection;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Bussiness.Model.SystemData
+{
+    /// <summary>
+    /// 员工岗位关联表
+    /// </summary>
+    public class sys_post_staff: BaseEntity
+    {
+        /// <summary>
+        /// 主键id
+        /// </summary>
+        [Key]
+        public long id { get; set; }
+
+        /// <summary>
+        /// 员工id
+        /// </summary>
+        public long staff_id { get; set; }
+
+        /// <summary>
+        /// 岗位id
+        /// </summary>
+        public long post_id { get; set; }
+    }
+}

+ 58 - 0
MicroServices/Business/Bussiness.Model/SystemData/sys_shift.cs

@@ -0,0 +1,58 @@
+using Business.Models;
+using System;
+using System.Collections.Generic;
+using System.ComponentModel.DataAnnotations;
+using System.Globalization;
+using System.Linq;
+using System.Net.NetworkInformation;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Bussiness.Model.SystemData
+{
+    /// <summary>
+    /// 班制表
+    /// </summary>
+    public class sys_shift: BaseEntity
+    {
+        /// <summary>
+        /// 主键id
+        /// </summary>
+        [Key]
+        public long shift_id { get; set; }
+
+        /// <summary>
+        /// 班制编码
+        /// </summary>
+        [StringLength(50)]
+        public string shift_no { get; set; }
+
+        /// <summary>
+        /// 班制名称
+        /// </summary>
+        [StringLength(255)]
+        public string shift_name { get; set; }
+
+        /// <summary>
+        /// 是否跨天 1是 0否
+        /// </summary>
+        public bool is_across { get; set; }
+
+        /// <summary>
+        /// 备注
+        /// </summary>
+        [StringLength(255)]
+        public long remark { get; set; }
+
+        /// <summary>
+        /// 有效时长
+        /// </summary>
+        public int validate_hours { get; set; }
+
+        /// <summary>
+        /// 数据状态标识 1启用 0停用
+        /// </summary>
+        public bool state { get; set; }
+
+    }
+}

+ 40 - 0
MicroServices/Business/Bussiness.Model/SystemData/sys_shift_invalid_time.cs

@@ -0,0 +1,40 @@
+using Business.Models;
+using System;
+using System.Collections.Generic;
+using System.ComponentModel.DataAnnotations;
+using System.Globalization;
+using System.Linq;
+using System.Net.NetworkInformation;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Bussiness.Model.SystemData
+{
+    /// <summary>
+    /// 班次无效时间表
+    /// </summary>
+    public class sys_shift_invalid_time:BaseEntity
+    {
+        /// <summary>
+        /// 主键id
+        /// </summary>
+        [Key]
+        public long invalid_time_id { get; set; }
+
+        /// <summary>
+        /// 班次id
+        /// </summary>
+        public long slice_id { get; set; }
+
+
+        /// <summary>
+        /// 开始时间
+        /// </summary>
+        public DateTime start_time { get; set; }
+
+        /// <summary>
+        /// 结束时间
+        /// </summary>
+        public DateTime end_time { get; set; }
+    }
+}

+ 36 - 0
MicroServices/Business/Bussiness.Model/SystemData/sys_shift_shiftslice.cs

@@ -0,0 +1,36 @@
+using Business.Models;
+using System;
+using System.Collections.Generic;
+using System.ComponentModel.DataAnnotations;
+using System.Globalization;
+using System.Linq;
+using System.Net.NetworkInformation;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Bussiness.Model.SystemData
+{
+    /// <summary>
+    /// 班制班次关联表
+    /// </summary>
+    public class sys_shift_shiftslice:BaseEntity
+    {
+        /// <summary>
+        /// 主键id
+        /// </summary>
+        [Key]
+        public long id { get; set; }
+
+        /// <summary>
+        /// 班制id
+        /// </summary>
+        [StringLength(50)]
+        public string shift_id { get; set; }
+
+        /// <summary>
+        /// 班次id
+        /// </summary>
+        [StringLength(255)]
+        public string slice_id { get; set; }
+    }
+}

+ 72 - 0
MicroServices/Business/Bussiness.Model/SystemData/sys_shiftslice.cs

@@ -0,0 +1,72 @@
+using Business.Models;
+using System;
+using System.Collections.Generic;
+using System.ComponentModel.DataAnnotations;
+using System.Globalization;
+using System.Linq;
+using System.Net.NetworkInformation;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Bussiness.Model.SystemData
+{
+    /// <summary>
+    /// 班次表
+    /// </summary>
+    public class sys_shiftslice: BaseEntity
+    {
+        /// <summary>
+        /// 主键id
+        /// </summary>
+        [Key]
+        public long slice_id { get; set; }
+
+        /// <summary>
+        /// 班次编码
+        /// </summary>
+        [StringLength(50)]
+        public string slice_no { get; set; }
+
+        /// <summary>
+        /// 班次名称
+        /// </summary>
+        [StringLength(255)]
+        public string slice_name { get; set; }
+
+        /// <summary>
+        /// 起始工作时间
+        /// </summary>
+        public DateTime slice_start_time { get; set; }
+
+        /// <summary>
+        /// 结束工作时间
+        /// </summary>
+        public DateTime slice_end_time { get; set; }
+
+        /// <summary>
+        /// 是否跨天 1是 0否
+        /// </summary>
+        public bool is_across { get; set; }
+
+        /// <summary>
+        /// 备注
+        /// </summary>
+        [StringLength(255)]
+        public long remark { get; set; }
+
+        /// <summary>
+        /// 有效时长
+        /// </summary>
+        public int validate_hours { get; set; }
+
+        /// <summary>
+        /// 工作时长
+        /// </summary>
+        public int work_hours { get; set; }
+
+        /// <summary>
+        /// 数据状态标识 1启用 0停用
+        /// </summary>
+        public bool state { get; set; }
+    }
+}

+ 145 - 0
MicroServices/Business/Bussiness.Model/SystemData/sys_staff.cs

@@ -0,0 +1,145 @@
+using Business.Models;
+using System;
+using System.Collections.Generic;
+using System.ComponentModel.DataAnnotations;
+using System.Globalization;
+using System.Linq;
+using System.Net.NetworkInformation;
+using System.Numerics;
+using System.Reflection;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Bussiness.Model.SystemData
+{
+    /// <summary>
+    /// 员工表
+    /// </summary>
+    public class sys_staff:BaseEntity
+    {
+        /// <summary>
+        /// 主键id
+        /// </summary>
+        [Key]
+        public long staff_id { get; set; }
+
+        /// <summary>
+        /// 员工编码
+        /// </summary>
+        [StringLength(50)]
+        public string staff_no { get; set; }
+
+        /// <summary>
+        /// 用户id
+        /// </summary>
+        public long user_id { get; set; }
+
+        /// <summary>
+        /// 用户名称
+        /// </summary>
+        [StringLength(255)]
+        public string user_name { get; set; }
+
+        /// <summary>
+        /// 中文名
+        /// </summary>
+        [StringLength(255)]
+        public string chinese_name { get; set; }
+
+        /// <summary>
+        /// 电话
+        /// </summary>
+        [StringLength(80)]
+        public string phone { get; set; }
+
+        /// <summary>
+        /// 照片
+        /// </summary>
+        [StringLength(255)]
+        public string photo { get; set; }
+
+        /// <summary>
+        /// 组织名称
+        /// </summary>
+        [StringLength(255)]
+        public string org_name { get; set; }
+
+        /// <summary>
+        /// 生日
+        /// </summary>
+        public DateOnly birthday { get; set; }
+
+        /// <summary>
+        /// 邮箱
+        /// </summary>
+        [StringLength(255)]
+        public string email { get; set; }
+
+        /// <summary>
+        /// 性别
+        /// </summary>
+        [StringLength(1)]
+        public string sex { get; set; }
+
+
+        /// <summary>
+        /// 卡号
+        /// </summary>
+        [StringLength(50)]
+        public string card_no { get; set; }
+
+        /// <summary>
+        /// 工号
+        /// </summary>
+        [StringLength(50)]
+        public string emp_no { get; set; }
+
+        /// <summary>
+        /// 身份证号
+        /// </summary>
+        [StringLength(50)]
+        public string id_no { get; set; }
+
+        /// <summary>
+        /// 移动电话
+        /// </summary>
+        [StringLength(50)]
+        public string mobile { get; set; }
+
+        /// <summary>
+        /// 政治面貌
+        /// </summary>
+        [StringLength(50)]
+        public string politics { get; set; }
+
+        /// <summary>
+        /// 备注
+        /// </summary>
+        [StringLength(255)]
+        public string staff_remark { get; set; }
+
+        /// <summary>
+        /// 部门id
+        /// </summary>
+        public long dept_id { get; set; }
+
+        /// <summary>
+        /// 部门编号
+        /// </summary>
+        [StringLength(50)]
+        public string dept_no { get; set; }
+
+
+        /// <summary>
+        /// 部门名称
+        /// </summary>
+        [StringLength(255)]
+        public string dept_name { get; set; }
+
+        /// <summary>
+        /// 数据状态标识 1启用 0停用
+        /// </summary>
+        [StringLength(255)]
+        public bool state { get; set; }
+    }
+}

+ 46 - 0
MicroServices/Business/Bussiness.Model/SystemData/sys_upload.cs

@@ -0,0 +1,46 @@
+using Microsoft.VisualBasic.FileIO;
+using System;
+using System.Collections.Generic;
+using System.ComponentModel.DataAnnotations;
+using System.Globalization;
+using System.Linq;
+using System.Net.NetworkInformation;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Bussiness.Model.SystemData
+{
+    /// <summary>
+    /// 文件上传表
+    /// </summary>
+    public class sys_upload
+    {
+        /// <summary>
+        /// 主键id
+        /// </summary>
+        [Key]
+        public long upload_id { get; set; }
+
+        /// <summary>
+        /// 文件存储路径
+        /// </summary>
+        [StringLength(255)]
+        public string file_url { get; set; }
+
+        /// <summary>
+        /// 文件数据类型
+        [StringLength(255)]
+        public string data_type { get; set; }
+
+        /// <summary>
+        /// 文件后缀
+        /// </summary>
+        [StringLength(255)]
+        public string file_type { get; set; }
+
+        /// <summary>
+        /// 源文件名称
+        [StringLength(255)]
+        public string original_file_name { get; set; }
+    }
+}

+ 202 - 0
MicroServices/Business/Bussiness.Model/SystemData/wms_customer.cs

@@ -0,0 +1,202 @@
+using AutoMapper.Execution;
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.ComponentModel.DataAnnotations;
+using System.Diagnostics.Metrics;
+using System.Diagnostics;
+using System.Globalization;
+using System.Linq;
+using System.Net;
+using System.Net.NetworkInformation;
+using System.Reflection;
+using System.Text;
+using System.Threading.Tasks;
+using System.Xml.Linq;
+using Volo.Abp;
+using Business.EntityFrameworkCore;
+using Business.Models;
+
+namespace Bussiness.Model.SystemData
+{
+    /// <summary>
+    /// 客户
+    /// </summary>
+    public class wms_customer:BaseEntity
+    {
+        /// <summary>
+        /// 客户主键id
+        /// </summary>
+        [Key]
+        public long customer_id { get; set; }
+
+        /// <summary>
+        /// 客户编号
+        /// </summary>
+        [StringLength(80)]
+        public string customer_no { get; set; }
+
+        /// <summary>
+        /// 客户名称
+        /// </summary>
+        [StringLength(255)]
+        public string customer_name { get; set; }
+
+        /// <summary>
+        /// 客户级别
+        /// </summary>
+        [StringLength(255)]
+        public string customer_level { get; set; }
+
+        /// <summary>
+        /// 手机号码
+        /// </summary>
+        [StringLength(80)]
+        public string mobile { get; set; }
+
+        /// <summary>
+        /// 电话号码
+        /// </summary>
+        [StringLength(80)]
+        public string telephone { get; set; }
+
+        /// <summary>
+        /// 邮件地址
+        /// </summary>
+        [StringLength(80)]
+        public string email { get; set; }
+
+        /// <summary>
+        /// 联系人
+        /// </summary>
+        [StringLength(80)]
+        public string contact { get; set; }
+
+        /// <summary>
+        /// 邮政编码
+        /// </summary>
+        [StringLength(80)]
+        public string post_code { get; set; }
+
+        /// <summary>
+        /// 国别地区
+        /// </summary>
+        [StringLength(255)]
+        public string country { get; set; }
+
+        /// <summary>
+        /// 省份
+        /// </summary>
+        [StringLength(255)]
+        public string province { get; set; }
+
+
+        /// <summary>
+        /// 城市
+        /// </summary>
+        [StringLength(255)]
+        public string city { get; set; }
+
+        /// <summary>
+        /// 区
+        /// </summary>
+        [StringLength(255)]
+        public string region { get; set; }
+
+        /// <summary>
+        /// 地址
+        /// </summary>
+        [StringLength(255)]
+        public string address { get; set; }
+
+        /// <summary>
+        /// 销售模式
+        /// </summary>
+        [StringLength(255)]
+        public string sale_mode { get; set; }
+
+        /// <summary>
+        /// 客户简称
+        /// </summary>
+        [StringLength(255)]
+        public string short_name { get; set; }
+
+        /// <summary>
+        /// 客户简码
+        /// </summary>
+        [StringLength(255)]
+        public string short_number { get; set; }
+
+        /// <summary>
+        /// 状态
+        /// </summary>
+        [Required]
+        public int state { get; set; }
+
+        /// <summary>
+        /// 增值税率
+        /// </summary>
+        [DecimalPrecision(18,10)]
+        public decimal value_add_rate { get; set; }
+
+        /// <summary>
+        /// 默认运输提前期_天
+        /// </summary>
+        [Required]
+        public int carrying_aos { get; set; }
+
+        /// <summary>
+        /// 法人代表
+        /// </summary>
+        [StringLength(255)]
+        public string corperate { get; set; }
+
+        /// <summary>
+        /// 结算币种
+        /// </summary>
+        [StringLength(80)]
+        public string currency { get; set; }
+
+        /// <summary>
+        /// 专营业务员
+        /// </summary>
+        [StringLength(80)]
+        public string employee_name { get; set; }
+
+        /// <summary>
+        /// 专营业务员_工号
+        /// </summary>
+        [StringLength(80)]
+        public string employee_no { get; set; }
+
+        /// <summary>
+        /// 操作时间
+        /// </summary>
+        [StringLength(80)]
+        public string op_time { get; set; }
+
+        /// <summary>
+        /// 客户类别编码
+        /// </summary>
+        [StringLength(255)]
+        public string cust_type_number { get; set; }
+
+        /// <summary>
+        /// 客户类别
+        /// </summary>
+        [StringLength(255)]
+        public string cust_type { get; set; }
+
+        /// <summary>
+        /// 客户分组编号
+        /// </summary>
+        [StringLength(255)]
+        public string cust_group_number { get; set; }
+
+        /// <summary>
+        /// 客户分组名称
+        /// </summary>
+        [StringLength(255)]
+        public string cust_group_name { get; set; }
+    }
+}

+ 304 - 0
MicroServices/Business/Bussiness.Model/SystemData/wms_supplier.cs

@@ -0,0 +1,304 @@
+using AutoMapper.Execution;
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.ComponentModel.DataAnnotations;
+using System.Diagnostics.Metrics;
+using System.Diagnostics;
+using System.Globalization;
+using System.Linq;
+using System.Net;
+using System.Net.NetworkInformation;
+using System.Reflection;
+using System.Text;
+using System.Threading.Tasks;
+using System.Xml.Linq;
+using Volo.Abp;
+using Business.EntityFrameworkCore;
+using Business.Models;
+
+namespace Bussiness.Model.SystemData
+{
+    /// <summary>
+    /// 供应商
+    /// </summary>
+    public class wms_supplier: BaseEntity
+    {
+        /// <summary>
+        /// 供应商主键id
+        /// </summary>
+        [Key]
+        public long supplier_id { get; set; }
+
+        /// <summary>
+        /// 供应商编号
+        /// </summary>
+        [StringLength(80)]
+        public string supplier_no { get; set; }
+
+        /// <summary>
+        /// 供应商名称
+        /// </summary>
+        [StringLength(255)]
+        public string supplier_name { get; set; }
+
+        /// <summary>
+        /// 供应商全称
+        /// </summary>
+        [StringLength(255)]
+        public string supplier_full_name { get; set; }
+
+        /// <summary>
+        /// 供应商助记码
+        /// </summary>
+        [StringLength(80)]
+        public string supplier_help_code { get; set; }
+
+        /// <summary>
+        /// 供应商简称
+        /// </summary>
+        [StringLength(255)]
+        public string supplier_short_name { get; set; }
+
+        /// <summary>
+        /// 供应商地址
+        /// </summary>
+        [StringLength(255)]
+        public string supplier_address { get; set; }
+
+        /// <summary>
+        /// 状态
+        /// </summary>
+        [Required]
+        public int state { get; set; }
+
+        /// <summary>
+        /// 区域
+        /// </summary>
+        [StringLength(255)]
+        public string region { get; set; }
+
+        /// <summary>
+        /// 行业
+        /// </summary>
+        [StringLength(255)]
+        public string trade { get; set; }
+
+
+        /// <summary>
+        /// 联系人
+        /// </summary>
+        [StringLength(80)]
+        public string contact { get; set; }
+
+        /// <summary>
+        /// 联系电话
+        /// </summary>
+        [StringLength(80)]
+        public string telephone { get; set; }
+
+        /// <summary>
+        /// 移动电话
+        /// </summary>
+        [StringLength(80)]
+        public string mobile { get; set; }
+
+        /// <summary>
+        /// 传真号码
+        /// </summary>
+        [StringLength(80)]
+        public string fax { get; set; }
+
+        /// <summary>
+        /// 邮政编码
+        /// </summary>
+        [StringLength(80)]
+        public string post_code { get; set; }
+
+        /// <summary>
+        /// 邮件地址
+        /// </summary>
+        [StringLength(80)]
+        public string email { get; set; }
+
+
+        /// <summary>
+        /// 税务登记号
+        /// </summary>
+        [StringLength(255)]
+        public string taxid { get; set; }
+
+        /// <summary>
+        /// 开户银行
+        /// </summary>
+        [StringLength(255)]
+        public string bank { get; set; }
+
+        /// <summary>
+        /// 银行账号
+        /// </summary>
+        [StringLength(80)]
+        public string bank_account { get; set; }
+
+        /// <summary>
+        /// 增值税率
+        /// </summary>
+        [DecimalPrecision(18,10)]
+        public decimal value_add_rate { get; set; }
+
+        /// <summary>
+        /// 供应商分类
+        /// </summary>
+        [StringLength(80)]
+        public string type { get; set; }
+
+        /// <summary>
+        /// 采购模式
+        /// </summary>
+        [StringLength(80)]
+        public string po_mode { get; set; }
+
+        /// <summary>
+        /// VMI仓
+        /// </summary>
+        [StringLength(255)]
+        public string vmi_stock { get; set; }
+
+        /// <summary>
+        /// 受托代销虚仓
+        /// </summary>
+        [StringLength(255)]
+        public string stockid_assignee { get; set; }
+
+        /// <summary>
+        /// 分支机构信息
+        /// </summary>
+        [StringLength(255)]
+        public string branch_info { get; set; }
+
+        /// <summary>
+        /// 注册商标
+        /// </summary>
+        [StringLength(255)]
+        public string regmark { get; set; }
+
+        /// <summary>
+        /// 营业执照
+        /// </summary>
+        [StringLength(255)]
+        public string licence { get; set; }
+
+        /// <summary>
+        /// 注册日期
+        /// </summary>
+        public DateTime regster_date { get; set; }
+
+        /// <summary>
+        /// 批准日期
+        /// </summary>
+        public DateTime approve_date { get; set; }
+
+        /// <summary>
+        /// 生效日期
+        /// </summary>
+        public DateTime begin_day { get; set; }
+
+        /// <summary>
+        /// 失效日期
+        /// </summary>
+        public DateTime end_day { get; set; }
+
+        /// <summary>
+        /// 供应商等级
+        /// </summary>
+        [StringLength(80)]
+        public string supply_grade { get; set; }
+
+        /// <summary>
+        /// 供应类别
+        /// </summary>
+        [StringLength(80)]
+        public string supply_type { get; set; }
+
+        /// <summary>
+        /// 公司类别
+        /// </summary>
+        [StringLength(80)]
+        public string company_type { get; set; }
+
+        /// <summary>
+        /// 交货自动生成收货单据
+        /// </summary>
+        public bool auto_create_mr { get; set; }
+
+        /// <summary>
+        /// 自动确认订单
+        /// </summary>
+        public bool auto_validate_order { get; set; }
+
+        /// <summary>
+        /// 启用供应商门户
+        /// </summary>
+        public bool isuse_supplier_portal { get; set; }
+
+        /// <summary>
+        /// 分管部门
+        /// </summary>
+        [StringLength(80)]
+        public string department { get; set; }
+
+        /// <summary>
+        /// 专营业务员
+        /// </summary>
+        [StringLength(80)]
+        public string employee_name { get; set; }
+
+        /// <summary>
+        /// 专营业务员_工号
+        /// </summary>
+        [StringLength(80)]
+        public string employee_no { get; set; }
+
+        /// <summary>
+        /// 结算币种
+        /// </summary>
+        [StringLength(80)]
+        public string currency { get; set; }
+
+        /// <summary>
+        /// 结算方式
+        /// </summary>
+        [StringLength(80)]
+        public string settlement { get; set; }
+
+        /// <summary>
+        /// 英文名称
+        /// </summary>
+        [StringLength(255)]
+        public string name_en { get; set; }
+
+        /// <summary>
+        /// 英文地址
+        /// </summary>
+        [StringLength(255)]
+        public string addr_en { get; set; }
+
+        /// <summary>
+        /// 国别地区
+        /// </summary>
+        [StringLength(255)]
+        public string country { get; set; }
+
+        /// <summary>
+        /// 审核人
+        /// </summary>
+        [StringLength(80)]
+        public string checker { get; set; }
+
+        /// <summary>
+        /// 操作时间
+        /// </summary>
+        [StringLength(80)]
+        public string op_time { get; set; }
+    }
+}

+ 50 - 0
sql/MySql/base_menu.sql

@@ -0,0 +1,50 @@
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('8BC415E3-C718-B4DC-67CD-3A06241ACE39', NULL, NULL, NULL, 1, N'systemManagement', N'系统管理', 2, N'/system', N'Layout', N'', N'system', '0', '1', '0', N'{}', N'dbb29c674ec548fcbdc18cf36d4575bf', '2022-09-06 16:32:31.3454028', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', '2022-09-09 15:43:37.8166714', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7'); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('E7974793-942F-4D44-811D-3A06243FE4EE', NULL, NULL, '8BC415E3-C718-B4DC-67CD-3A06241ACE39', 1, N'user', N'用户管理', 3, N'user', N'user/index', N'AbpIdentity.Users', N'user', '0', '0', '0', N'{}', N'2276fb10867d4014b0c498aa2b27f40b', '2022-09-06 17:13:01.9375129', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', '2022-09-19 15:10:30.5760326', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7'); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('02048538-FC98-D3E7-5B82-3A06246946FF', NULL, NULL, NULL, 1, N'SaaS', N'SaaS', 0, N'/saas', N'Layout', N'AbpTenantManagement.Tenants', N'cloud', '0', '1', '0', N'{}', N'f3dd433ecf9140338632cb770796d6cc', '2022-09-06 17:58:14.0175546', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', '2022-09-20 13:45:12.1051888', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7'); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('8AF750EE-1446-4C12-3EB4-3A06246A195C', NULL, NULL, '02048538-FC98-D3E7-5B82-3A06246946FF', 1, N'tenant', N'租户管理', 1, N'tenant', N'tenant/index', N'AbpTenantManagement.Tenants', N'users', '0', '0', '0', N'{}', N'838db7b9e83c40e286680ba0b6cc31d9', '2022-09-06 17:59:07.8693420', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', '2022-09-19 15:04:25.5098624', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7'); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('37982B74-417C-491E-0568-3A06246AE915', NULL, NULL, NULL, 1, N'base', N'基础资料', 3, N'/base', N'Layout', N'', N'base', '0', '1', '0', N'{}', N'96cf9c44a56d4a29a666c65662f1c18b', '2022-09-06 18:00:01.0453125', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', '2022-09-23 16:00:35.5090640', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7'); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('544F4BCF-0FFE-065E-AB1A-3A06246CF6F5', NULL, NULL, NULL, 1, N'tool', N'系统工具', 4, N'/tool', N'Layout', N'', N'tool', '0', '1', '0', N'{}', N'3113225844e84d0b95a172ab9e968b3a', '2022-09-06 18:02:15.6714904', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', '2022-09-23 16:00:58.1450176', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7'); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('76733C6C-E73E-8F11-2C0B-3A06247360EE', NULL, NULL, '8BC415E3-C718-B4DC-67CD-3A06241ACE39', 1, N'Menu', N'菜单管理', 4, N'menu', N'menu/index', N'BaseService.Menu', N'menu', '0', '0', '0', N'{}', N'2544aa08a27e4118b05f9e98e0a3af7b', '2022-09-06 18:09:16.0147894', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', '2022-09-19 15:34:37.6499191', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7'); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('AE5E77FC-9F64-976C-100B-3A062476EBD1', NULL, NULL, 'E7974793-942F-4D44-811D-3A06243FE4EE', 2, N'Create', N'新增', 3, N'user', N'system/user/index', N'AbpIdentity.Users.Create', N'create', '1', '0', '0', N'{}', N'de7de6e57f6043afb1ae5c3c6ca2260a', '2022-09-06 18:20:49.4960661', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', '2022-09-19 15:31:50.9326489', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7'); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('AE5E77FC-9F64-976C-100B-3A062476EBD2', NULL, NULL, 'E7974793-942F-4D44-811D-3A06243FE4EE', 2, N'Update', N'修改', 3, N'user', N'system/user/index', N'AbpIdentity.Users.Update', N'update', '1', '0', '0', N'{}', N'b9be6ca7371641cba03b4c721431767a', '2022-09-06 18:20:49.4960661', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', '2022-09-19 15:31:59.0623225', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7'); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('AE5E77FC-9F64-976C-100B-3A062476EBD3', NULL, NULL, 'E7974793-942F-4D44-811D-3A06243FE4EE', 2, N'delete', N'删除', 3, N'user', N'system/user/index', N'AbpIdentity.Users.Delete', N'delete', '1', '0', '0', N'{}', N'65a82a7cb1c54b1196b48713e9d73a9f', '2022-09-06 18:20:49.4960661', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', '2022-09-19 15:32:32.3183892', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7'); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('AE5E77FC-9F64-976C-100B-3A062476EBD4', NULL, NULL, '76733C6C-E73E-8F11-2C0B-3A06247360EE', 2, N'create', N'新增', 3, N'menu', N'system/user/index', N'BaseService.Menu.Create', N'create', '1', '0', '0', N'{}', N'0ea3479577cc4e04aab28a0cdac7e540', '2022-09-06 18:20:49.4960661', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', '2022-09-19 15:43:00.0407023', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7'); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('AE5E77FC-9F64-976C-100B-3A062476EBD5', NULL, NULL, '76733C6C-E73E-8F11-2C0B-3A06247360EE', 2, N'update', N'修改', 3, N'menu', N'system/user/index', N'BaseService.Menu.Update', N'update', '1', '0', '0', N'{}', N'81af81bbade6458783ec8d14d7cab732', '2022-09-06 18:20:49.4960661', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', '2022-09-19 15:43:09.7759184', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7'); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('AE5E77FC-9F64-976C-100B-3A062476EBD6', NULL, NULL, '76733C6C-E73E-8F11-2C0B-3A06247360EE', 2, N'delete', N'删除', 3, N'menu', N'system/user/index', N'BaseService.Menu.Delete', N'delete', '1', '0', '0', N'{}', N'7057cdb177634192ad0f4eaa70c59420', '2022-09-06 18:20:49.4960661', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', '2022-09-19 15:43:18.6053501', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7'); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('AE5E77FC-9F64-976C-100B-3A062476EBD9', NULL, NULL, '8BC415E3-C718-B4DC-67CD-3A06241ACE39', 1, N'role', N'角色管理', 3, N'role', N'role/index', N'AbpIdentity.Roles', N'role', '0', '0', '0', N'{}', N'bca8e0d3985a4bbf89554c6ff2964060', '2022-09-06 18:13:08.1854510', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', '2022-09-19 15:10:49.9510129', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7'); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('AE5E77FC-9F64-976C-100B-3A062476EBE4', NULL, NULL, '4C0067C6-CAD9-EF30-F76A-3A062477E70D', 2, N'create', N'新增', 3, N'org', N'system/user/index', N'BaseService.Organization.Create', N'create', '1', '0', '0', N'{}', N'fa5fa98ca2154e719463ff2c592f6a0c', '2022-09-06 18:20:49.4960661', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', '2022-09-19 15:51:19.1762642', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7'); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('AE5E77FC-9F64-976C-100B-3A062476EBE5', NULL, NULL, '4C0067C6-CAD9-EF30-F76A-3A062477E70D', 2, N'update', N'修改', 3, N'org', N'system/user/index', N'BaseService.Organization.Update', N'update', '1', '0', '0', N'{}', N'c47820271a484487881dec430b4d6d90', '2022-09-06 18:20:49.4960661', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', '2022-09-19 15:51:23.9755154', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7'); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('AE5E77FC-9F64-976C-100B-3A062476EBE7', NULL, NULL, '4C0067C6-CAD9-EF30-F76A-3A062477E70D', 2, N'delete', N'删除', 3, N'org', N'system/user/index', N'BaseService.Organization.Delete', N'delete', '1', '0', '0', N'{}', N'f738f2214b59493193926b60a04d5056', '2022-09-06 18:20:49.4960661', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', '2022-09-19 15:51:31.5193331', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7'); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('4C0067C6-CAD9-EF30-F76A-3A062477E70D', NULL, NULL, '8BC415E3-C718-B4DC-67CD-3A06241ACE39', 1, N'org', N'组织机构', 8, N'org', N'org/index', N'BaseService.Organization', N'org', '0', '0', '0', N'{}', N'e973f4c28a1f4309b151a83e88ceacab', '2022-09-06 18:14:12.4939484', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', '2022-09-19 15:11:09.6373602', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7'); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('A8A414A9-9A3D-2714-D2E9-3A062479A12E', NULL, NULL, '8BC415E3-C718-B4DC-67CD-3A06241ACE39', 1, N'dict', N'数据字典', 8, N'dict', N'dict/index', N'BaseService.DataDictionary', N'data', '0', '0', '0', N'{}', N'f6a6d35ecff34db1a237fa34c1c8bdd0', '2022-09-06 18:16:05.6783300', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', '2022-09-19 15:11:15.5610268', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7'); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('A582FE07-7F5C-965F-A0FB-3A06247A1F8E', NULL, NULL, '8BC415E3-C718-B4DC-67CD-3A06241ACE39', 1, N'job', N'岗位管理', 8, N'job', N'job/index', N'BaseService.Job', N'job', '0', '0', '0', N'{}', N'12686775c1c74427ae69e483baaf01f1', '2022-09-06 18:16:38.0311530', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', '2022-09-19 15:12:02.7271645', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7'); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('2EFF55DA-ADDE-8FA3-C114-3A06247A8929', NULL, NULL, '8BC415E3-C718-B4DC-67CD-3A06241ACE39', 1, N'log', N'系统日志', 9, N'log', N'log/index', N'BaseService.AuditLogging', N'log', '0', '0', '0', N'{}', N'39a8450498444dd589966de3107ace40', '2022-09-06 18:17:05.0652844', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', '2022-09-19 15:12:14.8227022', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7'); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('8EF50D6B-3D3B-6838-9368-3A06247DF5C7', NULL, NULL, 'A8A414A9-9A3D-2714-D2E9-3A062479A12E', 2, N'create', N'新增', 3, N'dict', N'system/user/index', N'BaseService.DataDictionary.Create', N'create', '1', '0', '0', N'{}', N'4aa63dc1cc874b9f914d99fece7dc219', '2022-09-06 18:20:49.4960661', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', '2022-09-19 15:53:47.2480693', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7'); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('8EF50D6B-3D3B-6838-9368-3A06247DF5C8', NULL, NULL, 'A8A414A9-9A3D-2714-D2E9-3A062479A12E', 2, N'update', N'修改', 3, N'dict', N'system/user/index', N'BaseService.DataDictionary.Update', N'update', '1', '0', '0', N'{}', N'b78372ee5b42403e83aa3d5b1abfe139', '2022-09-06 18:20:49.4960661', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', '2022-09-19 15:53:52.2950590', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7'); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('8EF50D6B-3D3B-6838-9368-3A06247DF5C9', NULL, NULL, 'A8A414A9-9A3D-2714-D2E9-3A062479A12E', 2, N'delete', N'删除', 3, N'dict', N'system/user/index', N'BaseService.DataDictionary.Delete', N'delete', '1', '0', '0', N'{}', N'0bf04744677c4caeb58e8bc138f94e73', '2022-09-06 18:20:49.4960661', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', '2022-09-19 15:53:59.3227364', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7'); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('8EF50D6B-3D3B-6838-9368-3A06247DF5D7', NULL, NULL, 'AE5E77FC-9F64-976C-100B-3A062476EBD9', 2, N'create', N'新增', 3, N'role', N'system/user/index', N'AbpIdentity.Roles.Create', N'create', '1', '0', '0', N'{}', N'5c58016d93ae44fa91ab7d5a8f944e72', '2022-09-06 18:20:49.4960661', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', '2022-09-19 15:32:54.9265564', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7'); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('8EF50D6B-3D3B-6838-9368-3A06247DF5D8', NULL, NULL, 'AE5E77FC-9F64-976C-100B-3A062476EBD9', 2, N'update', N'修改', 3, N'role', N'system/user/index', N'AbpIdentity.Roles.Update', N'update', '1', '0', '0', N'{}', N'fd9b1a443e9a4ddbae2f40c3adbe5367', '2022-09-06 18:20:49.4960661', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', '2022-09-19 15:33:05.9256593', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7'); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('8EF50D6B-3D3B-6838-9368-3A06247DF5D9', NULL, NULL, 'AE5E77FC-9F64-976C-100B-3A062476EBD9', 2, N'delete', N'删除', 3, N'role', N'system/user/index', N'AbpIdentity.Roles.Delete', N'delete', '1', '0', '0', N'{}', N'86ce4b4e45614b9e89489109fccbf3b4', '2022-09-06 18:20:49.4960661', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', '2022-09-19 15:37:55.0654361', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7'); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('8EF50D6B-3D3B-6838-9368-3A06247DF5F7', NULL, NULL, 'A582FE07-7F5C-965F-A0FB-3A06247A1F8E', 2, N'create', N'新增', 3, N'job', N'system/user/index', N'BaseService.Job.Create', N'create', '1', '0', '0', N'{}', N'a11eeff5e99d4d0291574ee99f89baf4', '2022-09-06 18:20:49.4960661', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', '2022-09-19 15:54:33.9392623', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7'); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('8EF50D6B-3D3B-6838-9368-3A06247DF5F8', NULL, NULL, 'A582FE07-7F5C-965F-A0FB-3A06247A1F8E', 2, N'update', N'修改', 3, N'job', N'system/user/index', N'BaseService.Job.Update', N'update', '1', '0', '0', N'{}', N'916f657a3de14a95a8ea965bab620c78', '2022-09-06 18:20:49.4960661', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', '2022-09-19 15:54:43.7132302', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7'); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('8EF50D6B-3D3B-6838-9368-3A06247DF5F9', NULL, NULL, 'A582FE07-7F5C-965F-A0FB-3A06247A1F8E', 2, N'delete', N'删除', 3, N'job', N'system/user/index', N'BaseService.Job.Delete', N'delete', '1', '0', '0', N'{}', N'ddba7d0adaff4e64804636e45f3270cd', '2022-09-06 18:20:49.4960661', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', '2022-09-19 15:54:50.8175982', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7'); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('15E33901-2D6D-7696-8B84-3A06298ECF41', NULL, NULL, '8AF750EE-1446-4C12-3EB4-3A06246A195C', 2, N'create', N'新增', 1, N'', NULL, N'AbpTenantManagement.Tenants.Create', N'', '1', '0', '0', N'{}', N'48553d2ac31c4bed911d4bf2c72327f0', '2022-09-07 17:57:19.9043893', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', '2022-09-19 15:07:06.2675949', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7'); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('662877E8-4AE0-A1BC-5729-3A0629918E78', NULL, NULL, '37982B74-417C-491E-0568-3A06246AE915', 1, N'Book', N'Book', 10, N'book', N'book/index', N'Business.Book', N'book', '0', '0', '0', N'{}', N'cee79bfa26d34ac1b629df35c4cff98b', '2022-09-07 18:00:19.8368782', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', '2022-09-19 15:13:55.7751044', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7'); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('90464239-E432-0FBC-5876-3A062995BBF0', NULL, NULL, '544F4BCF-0FFE-065E-AB1A-3A06246CF6F5', 1, N'form', N'表单管理', 11, N'form', N'form/index', N'FormManagement.Form', N'control', '0', '0', '0', N'{}', N'830562b3480845d5a9282e881d979a19', '2022-09-07 18:04:53.6277765', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', '2022-09-19 16:00:57.7396866', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7'); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('EE11E311-3A65-637C-822B-3A06299D270B', NULL, NULL, '544F4BCF-0FFE-065E-AB1A-3A06246CF6F5', 1, N'flow', N'流程管理', 14, N'flow', N'flow-design/index', N'FlowManagement.Flow', N'flow', '0', '0', '0', N'{}', N'17cbae0509464a49a81bd2e3f8b011ae', '2022-09-07 18:12:59.7911597', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', '2022-09-19 18:08:06.1670824', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7'); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('81F67823-D380-BC5A-123E-3A06299EFA55', NULL, NULL, '544F4BCF-0FFE-065E-AB1A-3A06246CF6F5', 1, N'flowDisplay', N'流程详细', 16, N'flowDisplay/:id', N'flow/display', NULL, N'', '1', '0', '0', N'{}', N'456a1c82479346f8a578e6cc4f5dab3e', '2022-09-07 18:14:59.4171733', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', '2022-09-19 17:49:39.4591583', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7'); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('41A2A0E2-F955-CAE6-057D-3A0629A0A4D1', NULL, NULL, '544F4BCF-0FFE-065E-AB1A-3A06246CF6F5', 1, N'flowCreate', N'新增流程', 17, N'flowCreate', N'flow-design/create', N'FlowManagement.Flow.Create', N'', '1', '0', '0', N'{}', N'aa5722556c834006bd574950fdf16e96', '2022-09-07 18:16:48.5981610', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', '2022-09-19 18:18:11.5848832', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7'); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('7287FC8E-D961-ED08-96C9-3A0629A13491', NULL, NULL, '544F4BCF-0FFE-065E-AB1A-3A06246CF6F5', 1, N'flowEdit', N'修改流程', 17, N'flowEdit/:id', N'flow-design/edit', N'FlowManagement.Flow.Update', N'', '1', '0', '0', N'{}', N'f7d29c5bf1f84ec5b749d86e2037ebbe', '2022-09-07 18:17:25.3964163', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', '2022-09-19 17:48:24.9777580', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7'); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('19C203CE-D8BE-8BF3-2A8D-3A0629A31F83', NULL, NULL, '544F4BCF-0FFE-065E-AB1A-3A06246CF6F5', 1, N'build', N'代码生成', 20, N'build', N'build/index', N'FormManagement.FormBuild', N'code', '0', '0', '0', N'{}', N'76d41e225cf14b448537bea6683c1c40', '2022-09-07 18:19:31.0789713', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', '2022-09-19 17:48:44.6510914', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7'); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('7A42414F-DF34-30E4-C99A-3A0629A4412B', NULL, NULL, '544F4BCF-0FFE-065E-AB1A-3A06246CF6F5', 1, N'storage', N'文件存储', 22, N'storage', N'storage/index', N'StorageManagement.File', N'storage', '0', '0', '0', N'{}', N'3c068567354845d199ef5ceedf045fa9', '2022-09-07 18:20:45.2305601', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', '2022-09-19 15:14:15.0288017', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7'); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('114E7706-3E40-9F25-CEC7-3A0666D2F0D9', NULL, NULL, '7A42414F-DF34-30E4-C99A-3A0629A4412B', 2, N'create', N'新增', 23, N'', NULL, N'StorageManagement.File.Create', N'', '1', '0', '0', N'{}', N'613a80156eb64b64936f819f11d52c2a', '2022-09-19 15:28:35.0355520', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', NULL, NULL); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('3B1A40A9-DAE2-C607-5DC9-3A0666D39B06', NULL, NULL, '7A42414F-DF34-30E4-C99A-3A0629A4412B', 2, N'update', N'修改', 23, N'', NULL, N'StorageManagement.File.Update', N'', '1', '0', '0', N'{}', N'b9a53e9830b64e8e9d713f32152f90cb', '2022-09-19 15:29:18.6003562', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', NULL, NULL); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('6F1EA53A-4D4B-2249-C6F1-3A0666D3F816', NULL, NULL, '7A42414F-DF34-30E4-C99A-3A0629A4412B', 2, N'delete', N'删除', 23, N'', NULL, N'StorageManagement.File.Delete', N'', '1', '0', '0', N'{}', N'4e9760d9addf4992845e95753f112e0c', '2022-09-19 15:29:42.4251115', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', NULL, NULL); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('C790C0A7-86BC-262F-7168-3A0666DE9C88', NULL, NULL, 'AE5E77FC-9F64-976C-100B-3A062476EBD9', 2, N'RolePermissions', N'角色授权', 3, N'', NULL, N'AbpIdentity.Roles.ManagePermissions', N'', '1', '0', '0', N'{}', N'6165b556b5fc46e883368a8d5f59f194', '2022-09-19 15:41:19.8828770', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', NULL, NULL); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('E5FC9EC1-0AA9-AF2E-D1F6-3A0666EEFD99', NULL, NULL, '662877E8-4AE0-A1BC-5729-3A0629918E78', 2, N'create', N'新增', 11, N'', NULL, N'Business.Book.Create', N'', '1', '0', '0', N'{}', N'ba4712767446477899a309aeef8f8e63', '2022-09-19 15:59:13.3072349', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', NULL, NULL); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('F4ADB636-6E0A-E024-97C3-3A0666EF74ED', NULL, NULL, '662877E8-4AE0-A1BC-5729-3A0629918E78', 2, N'update', N'修改', 11, N'', NULL, N'Business.Book.Update', N'', '1', '0', '0', N'{}', N'2a04c7ecfe764209a95a515b04dbc7fc', '2022-09-19 15:59:43.8547572', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', NULL, NULL); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('8C3AAD57-5CFE-01AD-7BE7-3A0666EFDAF7', NULL, NULL, '662877E8-4AE0-A1BC-5729-3A0629918E78', 2, N'delete', N'删除', 11, N'', NULL, N'Business.Book.Delete', N'', '1', '0', '0', N'{}', N'7b34e5bd1a604243a763972c38f7958d', '2022-09-19 16:00:09.9773553', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', NULL, NULL); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('CE8CD2FD-57BD-0BBA-01A8-3A06675FC765', NULL, NULL, '544F4BCF-0FFE-065E-AB1A-3A06246CF6F5', 1, N'formCreate', N'新增表单', 12, N'form/create', N'form/create', N'FormManagement.Form.Create', N'', '1', '0', '0', N'{}', N'b15285e4f49a41539788c01a56b33593', '2022-09-19 18:02:24.9988668', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', '2022-09-19 18:10:17.6540427', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7'); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('A45C8582-DD73-F5AA-91FF-3A066765DFAF', NULL, NULL, '544F4BCF-0FFE-065E-AB1A-3A06246CF6F5', 1, N'formEdit', N'修改表单', 13, N'form/edit/:id', N'form/edit', N'FormManagement.Form.Update', N'edit', '1', '0', '0', N'{}', N'fa1211b5ffbf4c8bb57ca9c128c1bcc2', '2022-09-19 18:09:04.4332903', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', '2022-09-19 18:10:54.4012824', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7'); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('CBDD83BA-3330-A14B-3A71-3A06951312D8', NULL, NULL, '544F4BCF-0FFE-065E-AB1A-3A06246CF6F5', 1, N'buildEdit', N'生成配置', 21, N'buildEdit/:id', N'build/components/index', N'FormManagement.FormBuild.Update', N'', '1', '0', '0', N'{}', N'9f7f13a3f42e4f739fbd7060c6a48d9d', '2022-09-28 15:01:09.9815441', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7', '2022-09-28 15:01:31.0315980', 'AC239D41-BD6E-897C-E8A7-3A05749CF7C7'); 
+INSERT INTO base_menu(Id, TenantId, FormId, Pid, CategoryId, Name, Label, Sort, Path, Component, Permission, Icon, Hidden, AlwaysShow, IsDeleted, ExtraProperties, ConcurrencyStamp, CreationTime, CreatorId, LastModificationTime, LastModifierId) VALUES ('16C1F5CF-AB26-736C-4AA9-3A07729C96E7', NULL, NULL, '37982B74-417C-491E-0568-3A06246AE915', 1, N'print', N'打印模板', 8, N'print', N'print/index', NULL, N'printer', '0', '0', '0', N'{}', N'4f24dee49ff94ea4add37bbeb5a8517c', '2022-11-10 15:27:26.9545722', '7122DFA8-CA10-185C-8267-3A074DA007BF', '2022-11-11 14:23:21.6145148', '7122DFA8-CA10-185C-8267-3A074DA007BF'); 

+ 54 - 0
sql/MySql/base_role_menu.sql

@@ -0,0 +1,54 @@
+-- ----------------------------
+-- RoleId替换为本地admin角色Id
+-- ----------------------------
+
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', '8BC415E3-C718-B4DC-67CD-3A06241ACE39', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', 'E7974793-942F-4D44-811D-3A06243FE4EE', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', '02048538-FC98-D3E7-5B82-3A06246946FF', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', '8AF750EE-1446-4C12-3EB4-3A06246A195C', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', '37982B74-417C-491E-0568-3A06246AE915', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', '544F4BCF-0FFE-065E-AB1A-3A06246CF6F5', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', '76733C6C-E73E-8F11-2C0B-3A06247360EE', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', 'AE5E77FC-9F64-976C-100B-3A062476EBD1', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', 'AE5E77FC-9F64-976C-100B-3A062476EBD2', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', 'AE5E77FC-9F64-976C-100B-3A062476EBD3', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', 'AE5E77FC-9F64-976C-100B-3A062476EBD4', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', 'AE5E77FC-9F64-976C-100B-3A062476EBD5', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', 'AE5E77FC-9F64-976C-100B-3A062476EBD6', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', 'AE5E77FC-9F64-976C-100B-3A062476EBD9', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', 'AE5E77FC-9F64-976C-100B-3A062476EBE4', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', 'AE5E77FC-9F64-976C-100B-3A062476EBE5', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', 'AE5E77FC-9F64-976C-100B-3A062476EBE7', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', '4C0067C6-CAD9-EF30-F76A-3A062477E70D', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', 'A8A414A9-9A3D-2714-D2E9-3A062479A12E', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', 'A582FE07-7F5C-965F-A0FB-3A06247A1F8E', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', '2EFF55DA-ADDE-8FA3-C114-3A06247A8929', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', '8EF50D6B-3D3B-6838-9368-3A06247DF5C7', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', '8EF50D6B-3D3B-6838-9368-3A06247DF5C8', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', '8EF50D6B-3D3B-6838-9368-3A06247DF5C9', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', '8EF50D6B-3D3B-6838-9368-3A06247DF5D7', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', '8EF50D6B-3D3B-6838-9368-3A06247DF5D8', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', '8EF50D6B-3D3B-6838-9368-3A06247DF5D9', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', '8EF50D6B-3D3B-6838-9368-3A06247DF5F7', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', '8EF50D6B-3D3B-6838-9368-3A06247DF5F8', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', '8EF50D6B-3D3B-6838-9368-3A06247DF5F9', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', '15E33901-2D6D-7696-8B84-3A06298ECF41', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', '662877E8-4AE0-A1BC-5729-3A0629918E78', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', '90464239-E432-0FBC-5876-3A062995BBF0', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', 'EE11E311-3A65-637C-822B-3A06299D270B', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', '81F67823-D380-BC5A-123E-3A06299EFA55', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', '41A2A0E2-F955-CAE6-057D-3A0629A0A4D1', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', '7287FC8E-D961-ED08-96C9-3A0629A13491', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', '19C203CE-D8BE-8BF3-2A8D-3A0629A31F83', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', '7A42414F-DF34-30E4-C99A-3A0629A4412B', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', '114E7706-3E40-9F25-CEC7-3A0666D2F0D9', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', '3B1A40A9-DAE2-C607-5DC9-3A0666D39B06', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', '6F1EA53A-4D4B-2249-C6F1-3A0666D3F816', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', 'C790C0A7-86BC-262F-7168-3A0666DE9C88', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', 'E5FC9EC1-0AA9-AF2E-D1F6-3A0666EEFD99', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', 'F4ADB636-6E0A-E024-97C3-3A0666EF74ED', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', '8C3AAD57-5CFE-01AD-7BE7-3A0666EFDAF7', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', 'CE8CD2FD-57BD-0BBA-01A8-3A06675FC765', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', 'A45C8582-DD73-F5AA-91FF-3A066765DFAF', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', 'CBDD83BA-3330-A14B-3A71-3A06951312D8', NULL); 
+INSERT INTO base_role_menu(RoleId, MenuId, TenantId) VALUES ('', '16C1F5CF-AB26-736C-4AA9-3A07729C96E7', NULL);