zuoxiang 4 years ago
parent
commit
20d476bae3

File diff suppressed because it is too large
+ 7 - 3
gx_api/GxPress/Api/GxPress.Api/AdminControllers/AdminUtilsController.cs


+ 56 - 0
gx_api/GxPress/Model/GxPress.Entity/Vip/Vip.cs

@@ -0,0 +1,56 @@
+using System;
+using Datory.Annotations;
+
+namespace GxPress.Entity.Vip
+{
+    /// <summary>
+    /// 会员
+    /// </summary>
+    [DataTable("tede_vip")]
+    public class Vip : Datory.Entity
+    {
+        /// <summary>
+        /// 用户ID
+        /// </summary>
+        /// <value></value>
+        [DataColumn]
+        public int UserId { get; set; }
+        /// <summary>
+        /// 会员类型 月卡 季卡 年卡
+        /// </summary>
+        /// <value></value>
+        [DataColumn]
+        public int TypeId { get; set; }
+        /// <summary>
+        /// 终端 pc android ios
+        /// </summary>
+        /// <value></value>
+        [DataColumn]
+        public int Port { get; set; }
+        /// <summary>
+        /// 会员开始时间
+        /// </summary>
+        /// <value></value>
+        [DataColumn]
+        public DateTime BeginTime { get; set; }
+        /// <summary>
+        /// 会员结束时间
+        /// </summary>
+        /// <value></value>
+        [DataColumn]
+        public DateTime EndTime { get; set; }
+        /// <summary>
+        /// 开通价格
+        /// </summary>
+        /// <value></value>
+        [DataColumn]
+        public decimal Price { get; set; }
+        /// <summary>
+        /// 是否禁用
+        /// </summary>
+        /// <value></value>
+        [DataColumn]
+        public bool IsDisable { get; set; }
+
+    }
+}

+ 22 - 0
gx_api/GxPress/Model/GxPress.EnumConst/VipTypeConst.cs

@@ -0,0 +1,22 @@
+namespace GxPress.EnumConst
+{
+    public enum VipCardTypeConst
+    {
+        //月卡
+        Month = 1,
+        //季卡
+        Season = 2,
+        //年卡
+        Year = 3
+    }
+    public enum VipPortTypeConst
+    {
+        //月卡
+        Pc = 1,
+        //季卡
+        Android = 2,
+        //年卡
+        Ios = 3
+    }
+
+}

+ 28 - 0
gx_api/GxPress/Repository/GxPress.Repository.Implement/Vip/VipRepository.cs

@@ -0,0 +1,28 @@
+using System.Collections.Generic;
+using Datory;
+using GxPress.Repository.Interface.Vip;
+using AutoMapper;
+using Microsoft.Extensions.Options;
+using GxPress.Common.AppOptions;
+using GxPress.Common.Tools;
+
+namespace GxPress.Repository.Implement.Vip
+{
+    public class VipRepository : IVipRepository
+    {
+        private readonly Repository<Entity.Vip.Vip> _repository;
+        private readonly IMapper _mapper;
+
+        public VipRepository(IOptionsMonitor<DatabaseOptions> dbOptionsAccessor, IMapper mapper)
+        {
+            var databaseType = StringUtils.ToEnum<DatabaseType>(dbOptionsAccessor.CurrentValue.DatabaseType, DatabaseType.MySql);
+            var database = new Database(databaseType, dbOptionsAccessor.CurrentValue.ConnectionString);
+            _repository = new Repository<Entity.Vip.Vip>(database);
+            _mapper = mapper;
+        }
+
+        public IDatabase Database => _repository.Database;
+        public string TableName => _repository.TableName;
+        public List<TableColumn> TableColumns => _repository.TableColumns;
+    }
+}

+ 9 - 0
gx_api/GxPress/Repository/GxPress.Repository.Interface/Vip/IVipRepository.cs

@@ -0,0 +1,9 @@
+using Datory;
+
+namespace GxPress.Repository.Interface.Vip
+{
+    public interface IVipRepository: IRepository
+    {
+         
+    }
+}