99
This commit is contained in:
@@ -0,0 +1,52 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MyCode.Project.Infrastructure.Enumeration
|
||||
{
|
||||
/// <summary>
|
||||
/// 会员资料增加来源 0= 其他; 1= 抖音; 2= 美团; 3=自然流量; 4=老顾客裂变 5=1元公益、派单
|
||||
/// </summary>
|
||||
public enum AddFromTypeName
|
||||
{
|
||||
/// <summary>
|
||||
/// 其它
|
||||
/// </summary>
|
||||
[Description("其它")]
|
||||
Other = 0,
|
||||
|
||||
/// <summary>
|
||||
/// 抖音
|
||||
/// </summary>
|
||||
[Description("抖音")]
|
||||
DouYin = 1,
|
||||
|
||||
/// <summary>
|
||||
/// 美团
|
||||
/// </summary>
|
||||
[Description("美团")]
|
||||
MeiTuan = 2,
|
||||
|
||||
/// <summary>
|
||||
/// 自然流量
|
||||
/// </summary>
|
||||
[Description("自然流量")]
|
||||
Nature = 3,
|
||||
|
||||
/// <summary>
|
||||
/// 老顾客裂变
|
||||
/// </summary>
|
||||
[Description("老顾客裂变")]
|
||||
OldMember = 4,
|
||||
|
||||
/// <summary>
|
||||
/// 1元公益,派单
|
||||
/// </summary>
|
||||
[Description("1元公益、派单")]
|
||||
Benefit = 5
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MyCode.Project.Infrastructure.Enumeration
|
||||
{
|
||||
/// <summary>
|
||||
/// 均单业绩类型
|
||||
/// </summary>
|
||||
public enum AvgType
|
||||
{
|
||||
/// <summary>
|
||||
/// 小于
|
||||
/// </summary>
|
||||
[Description("小于")]
|
||||
Less = 1,
|
||||
|
||||
/// <summary>
|
||||
/// 开发环境
|
||||
/// </summary>
|
||||
[Description("大于等于")]
|
||||
MoreAndEqual = 2
|
||||
}
|
||||
}
|
||||
198
Reportapi/MyCode.Project.Infrastructure/Enumeration/DayNumber.cs
Normal file
198
Reportapi/MyCode.Project.Infrastructure/Enumeration/DayNumber.cs
Normal file
@@ -0,0 +1,198 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MyCode.Project.Infrastructure.Enumeration
|
||||
{
|
||||
public enum DayNumber
|
||||
{
|
||||
/// <summary>
|
||||
/// 1
|
||||
/// </summary>
|
||||
[Description("1")]
|
||||
One = 1,
|
||||
|
||||
/// <summary>
|
||||
/// 2
|
||||
/// </summary>
|
||||
[Description("2")]
|
||||
Two = 2,
|
||||
|
||||
/// <summary>
|
||||
/// 3
|
||||
/// </summary>
|
||||
[Description("3")]
|
||||
Three = 3,
|
||||
|
||||
/// <summary>
|
||||
/// 4
|
||||
/// </summary>
|
||||
[Description("4")]
|
||||
Four = 4,
|
||||
|
||||
/// <summary>
|
||||
/// 5
|
||||
/// </summary>
|
||||
[Description("5")]
|
||||
Five = 5,
|
||||
|
||||
/// <summary>
|
||||
/// 6
|
||||
/// </summary>
|
||||
[Description("6")]
|
||||
Six = 6,
|
||||
|
||||
/// <summary>
|
||||
/// 7
|
||||
/// </summary>
|
||||
[Description("7")]
|
||||
Seven = 7,
|
||||
|
||||
/// <summary>
|
||||
/// 8
|
||||
/// </summary>
|
||||
[Description("8")]
|
||||
Eight = 8,
|
||||
|
||||
/// <summary>
|
||||
/// 9
|
||||
/// </summary>
|
||||
[Description("9")]
|
||||
Nine = 9,
|
||||
|
||||
/// <summary>
|
||||
/// 10
|
||||
/// </summary>
|
||||
[Description("10")]
|
||||
Ten = 10,
|
||||
|
||||
/// <summary>
|
||||
/// 11
|
||||
/// </summary>
|
||||
[Description("11")]
|
||||
Eleven = 11,
|
||||
|
||||
/// <summary>
|
||||
/// 12
|
||||
/// </summary>
|
||||
[Description("12")]
|
||||
Twelve = 12,
|
||||
|
||||
/// <summary>
|
||||
/// 13
|
||||
/// </summary>
|
||||
[Description("13")]
|
||||
Thirteen = 13,
|
||||
|
||||
/// <summary>
|
||||
/// 14
|
||||
/// </summary>
|
||||
[Description("14")]
|
||||
Fourteen = 14,
|
||||
|
||||
/// <summary>
|
||||
/// 15
|
||||
/// </summary>
|
||||
[Description("15")]
|
||||
Fifteen = 15,
|
||||
|
||||
/// <summary>
|
||||
/// 16
|
||||
/// </summary>
|
||||
[Description("16")]
|
||||
Sixteen = 16,
|
||||
|
||||
/// <summary>
|
||||
/// 17
|
||||
/// </summary>
|
||||
[Description("17")]
|
||||
Seventeen = 17,
|
||||
|
||||
/// <summary>
|
||||
/// 18
|
||||
/// </summary>
|
||||
[Description("18")]
|
||||
Eighteen = 18,
|
||||
|
||||
/// <summary>
|
||||
/// 19
|
||||
/// </summary>
|
||||
[Description("19")]
|
||||
Nineteen = 19,
|
||||
|
||||
/// <summary>
|
||||
/// 20
|
||||
/// </summary>
|
||||
[Description("20")]
|
||||
Twenty = 20,
|
||||
|
||||
/// <summary>
|
||||
/// 21
|
||||
/// </summary>
|
||||
[Description("21")]
|
||||
TwentyOne = 21,
|
||||
|
||||
/// <summary>
|
||||
/// 22
|
||||
/// </summary>
|
||||
[Description("22")]
|
||||
TwentyTwo = 22,
|
||||
|
||||
/// <summary>
|
||||
/// 23
|
||||
/// </summary>
|
||||
[Description("23")]
|
||||
TwentyThree = 23,
|
||||
|
||||
/// <summary>
|
||||
/// 24
|
||||
/// </summary>
|
||||
[Description("24")]
|
||||
TwentyFour = 24,
|
||||
|
||||
/// <summary>
|
||||
/// 25
|
||||
/// </summary>
|
||||
[Description("25")]
|
||||
TwentyFive = 25,
|
||||
|
||||
/// <summary>
|
||||
/// 26
|
||||
/// </summary>
|
||||
[Description("26")]
|
||||
TwentySix = 26,
|
||||
|
||||
/// <summary>
|
||||
/// 27
|
||||
/// </summary>
|
||||
[Description("27")]
|
||||
TwentySeven = 27,
|
||||
|
||||
/// <summary>
|
||||
/// 28
|
||||
/// </summary>
|
||||
[Description("28")]
|
||||
TwentyEight = 28,
|
||||
|
||||
/// <summary>
|
||||
/// 29
|
||||
/// </summary>
|
||||
[Description("29")]
|
||||
TwentyNine = 29,
|
||||
|
||||
/// <summary>
|
||||
/// 30
|
||||
/// </summary>
|
||||
[Description("30")]
|
||||
Thirty = 30,
|
||||
|
||||
/// <summary>
|
||||
/// 31
|
||||
/// </summary>
|
||||
[Description("31")]
|
||||
ThirtyOne = 31
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MyCode.Project.Infrastructure.Enumeration
|
||||
{
|
||||
public enum EnumType
|
||||
{
|
||||
/// <summary>
|
||||
/// 宝典功效
|
||||
/// </summary>
|
||||
[Description("宝典功效")]
|
||||
BaoDianEffect = 1,
|
||||
|
||||
/// <summary>
|
||||
/// 宝典套餐类型
|
||||
/// </summary>
|
||||
[Description("宝典套餐类型")]
|
||||
BaoDianTaoCangType = 2
|
||||
}
|
||||
}
|
||||
27
Reportapi/MyCode.Project.Infrastructure/Enumeration/Env.cs
Normal file
27
Reportapi/MyCode.Project.Infrastructure/Enumeration/Env.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MyCode.Project.Infrastructure.Enumeration
|
||||
{
|
||||
/// <summary>
|
||||
/// 环境
|
||||
/// </summary>
|
||||
public enum Env
|
||||
{
|
||||
/// <summary>
|
||||
/// 生产环境
|
||||
/// </summary>
|
||||
[Description("生产环境")]
|
||||
Production = 1,
|
||||
|
||||
/// <summary>
|
||||
/// 开发环境
|
||||
/// </summary>
|
||||
[Description("开发环境")]
|
||||
Dev = 0
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MyCode.Project.Infrastructure.Enumeration
|
||||
{
|
||||
/// <summary>
|
||||
/// 导出文件类型
|
||||
/// </summary>
|
||||
public enum ExportFileType
|
||||
{
|
||||
/// <summary>
|
||||
/// zip文件
|
||||
/// </summary>
|
||||
[Description("Zip文件")]
|
||||
Zip = 0,
|
||||
|
||||
/// <summary>
|
||||
/// xls格式
|
||||
/// </summary>
|
||||
[Description("xls格式")]
|
||||
Xls = 1
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MyCode.Project.Infrastructure.Enumeration
|
||||
{
|
||||
public enum FuncType
|
||||
{
|
||||
/// <summary>
|
||||
/// 方法非存储过程
|
||||
/// </summary>
|
||||
[Description("方法")]
|
||||
Function = 1
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,68 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MyCode.Project.Infrastructure.Enumeration
|
||||
{
|
||||
/// <summary>
|
||||
/// 登录角色类型
|
||||
/// </summary>
|
||||
public enum LoginRoleType
|
||||
{
|
||||
/// <summary>
|
||||
/// 不存在的角色
|
||||
/// </summary>
|
||||
[Description("不存在的角色")]
|
||||
ErrorRoleType = -1,
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 顾客
|
||||
/// </summary>
|
||||
[Description("顾客")]
|
||||
Client = 1,
|
||||
|
||||
/// <summary>
|
||||
/// 会员端
|
||||
/// </summary>
|
||||
[Description("会员端")]
|
||||
Member = 2,
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 店长
|
||||
/// </summary>
|
||||
[Description("店长")]
|
||||
StoreManager = 14,
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 店员
|
||||
/// </summary>
|
||||
[Description("店员")]
|
||||
Clerk = 13,
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 加盟商
|
||||
/// </summary>
|
||||
[Description("加盟商")]
|
||||
CustomerID = 12,
|
||||
|
||||
/// <summary>
|
||||
/// 公众号信息
|
||||
/// </summary>
|
||||
[Description("公众号信息")]
|
||||
WeChatPublic = 15,
|
||||
|
||||
/// <summary>
|
||||
/// 观察者
|
||||
/// </summary>
|
||||
[Description("观察者")]
|
||||
Observer = 11,
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MyCode.Project.Infrastructure.Enumeration
|
||||
{
|
||||
/// <summary>
|
||||
/// 流行美套餐类型
|
||||
/// </summary>
|
||||
public enum LxmPackageType
|
||||
{
|
||||
/// <summary>
|
||||
/// 服务套餐
|
||||
/// </summary>
|
||||
[Description("服务套餐")]
|
||||
ServicePackage = 1,
|
||||
|
||||
/// <summary>
|
||||
/// 自定义服务套餐
|
||||
/// </summary>
|
||||
[Description("自定义服务套餐")]
|
||||
DiyServicePackage = 2,
|
||||
|
||||
/// <summary>
|
||||
///自定义商品套餐
|
||||
/// </summary>
|
||||
[Description("自定义商品套餐")]
|
||||
DiyProductPackage = 3
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MyCode.Project.Infrastructure.Enumeration
|
||||
{
|
||||
/// <summary>
|
||||
/// 流行美数据类型
|
||||
/// </summary>
|
||||
public enum LxmRecordType
|
||||
{
|
||||
/// <summary>
|
||||
/// 销售单
|
||||
/// </summary>
|
||||
[Description("销售单")]
|
||||
SalesSheet = 1,
|
||||
|
||||
/// <summary>
|
||||
/// 预售单
|
||||
/// </summary>
|
||||
[Description("预售单")]
|
||||
PreSalesSheet = 2,
|
||||
|
||||
/// <summary>
|
||||
/// 充值单
|
||||
/// </summary>
|
||||
[Description("充值单")]
|
||||
Recharge = 3,
|
||||
|
||||
/// <summary>
|
||||
/// 销售单的退货
|
||||
/// </summary>
|
||||
[Description("销售单的退货")]
|
||||
SalesOrderRefund = 4
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MyCode.Project.Infrastructure.Enumeration
|
||||
{
|
||||
public enum OneMoreType
|
||||
{
|
||||
/// <summary>
|
||||
/// 产品计划中的套餐和商品关系
|
||||
/// </summary>
|
||||
[Description("产品计划中的套餐和商品关系")]
|
||||
ProductPlanPackageAndSku = 1,
|
||||
|
||||
/// <summary>
|
||||
/// 新客销售中套餐和商品关系
|
||||
/// </summary>
|
||||
[Description("新客销售中套餐和商品关系")]
|
||||
NewGuestSalesPlanPackageAndSku = 2,
|
||||
|
||||
/// <summary>
|
||||
/// 新客销售中套餐和服务关系
|
||||
/// </summary>
|
||||
[Description("新客销售中套餐和服务关系")]
|
||||
NewGuestSalesPlanPackageAndServe = 3,
|
||||
|
||||
/// <summary>
|
||||
/// 产品计划中的套餐和服务的关系
|
||||
/// </summary>
|
||||
[Description("产品计划中的套餐和服务的关系")]
|
||||
ProductPlanPackageAndService = 4
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,58 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MyCode.Project.Infrastructure.Enumeration
|
||||
{
|
||||
/// <summary>
|
||||
/// 订单来源类型
|
||||
/// </summary>
|
||||
public enum OrderFromType
|
||||
{
|
||||
/// <summary>
|
||||
/// 其它
|
||||
/// </summary>
|
||||
[Description("其它")]
|
||||
Other = 0,
|
||||
|
||||
/// <summary>
|
||||
/// 抖音
|
||||
/// </summary>
|
||||
[Description("抖音")]
|
||||
DouYin = 1,
|
||||
|
||||
/// <summary>
|
||||
/// 美团
|
||||
/// </summary>
|
||||
[Description("美团")]
|
||||
MeiTuan = 2,
|
||||
|
||||
/// <summary>
|
||||
/// 自然流量
|
||||
/// </summary>
|
||||
[Description("自然流量")]
|
||||
Nature = 3,
|
||||
|
||||
/// <summary>
|
||||
/// 老顾客裂变
|
||||
/// </summary>
|
||||
[Description("老顾客裂变")]
|
||||
OldMember = 4,
|
||||
|
||||
/// <summary>
|
||||
/// 1元公益,派单
|
||||
/// </summary>
|
||||
[Description("1元公益、派单")]
|
||||
Benefit = 5,
|
||||
/// <summary>
|
||||
///第三方合作
|
||||
/// </summary>
|
||||
[Description("第三方合作")]
|
||||
ThirdPartyCooperation = 6
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,57 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MyCode.Project.Infrastructure.Enumeration
|
||||
{
|
||||
/// <summary>
|
||||
/// 订单明细的项目类型
|
||||
/// </summary>
|
||||
public enum OrderItemType
|
||||
{
|
||||
/// <summary>
|
||||
/// 商品,套装商品(直接存的套装商品的id,比如:"id": "1f26a3dc-2db0-9c70-7a14-3a01634de171",),不需要明细
|
||||
/// </summary>
|
||||
[Description("商品")]
|
||||
Goods = 0,
|
||||
|
||||
/// <summary>
|
||||
/// 服务
|
||||
/// </summary>
|
||||
[Description("服务")]
|
||||
Service = 1,
|
||||
|
||||
/// <summary>
|
||||
/// 服务套餐?服务管理 > 服务套餐 - 暂定没有说是否需要拆分的问题
|
||||
/// </summary>
|
||||
[Description("服务套餐")]
|
||||
Package = 2,
|
||||
|
||||
/// <summary>
|
||||
/// 卡券-有服务又有商品,暂不参与
|
||||
/// </summary>
|
||||
[Description("卡券")]
|
||||
CardCoupon = 3,
|
||||
|
||||
/// <summary>
|
||||
/// 加盟商的自定义套餐,需要拆分明细,历史数据因为报表全部归结于
|
||||
/// </summary>
|
||||
[Description("自定义套餐")]
|
||||
DiyPackage = 4,
|
||||
|
||||
/// <summary>
|
||||
/// 自定义套餐商品
|
||||
/// </summary>
|
||||
[Description("自定义套餐商品")]
|
||||
DiyPackageGoods = 40,
|
||||
|
||||
/// <summary>
|
||||
/// 自定义套餐服务
|
||||
/// </summary>
|
||||
[Description("自定义套餐服务")]
|
||||
DiyPackageService = 41
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MyCode.Project.Infrastructure.Enumeration
|
||||
{
|
||||
public enum OrderMoreType
|
||||
{
|
||||
/// <summary>
|
||||
/// 订单
|
||||
/// </summary>
|
||||
[Description("订单")]
|
||||
Order = 1,
|
||||
|
||||
/// <summary>
|
||||
/// 充值单
|
||||
/// </summary>
|
||||
[Description("充值单")]
|
||||
Recharge = 2
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MyCode.Project.Infrastructure.Enumeration
|
||||
{
|
||||
/// <summary>
|
||||
/// 新会员销售计划固定的两个套餐
|
||||
/// </summary>
|
||||
public enum PlanProductId
|
||||
{
|
||||
/// <summary>
|
||||
/// 新客人数
|
||||
/// </summary>
|
||||
[Description("新客人数")]
|
||||
NewMemberQty = 1,
|
||||
|
||||
/// <summary>
|
||||
/// 首单人数
|
||||
/// </summary>
|
||||
[Description("首单人数")]
|
||||
FirstOrderQty = 2,
|
||||
|
||||
/// <summary>
|
||||
/// 彩妆
|
||||
/// </summary>
|
||||
[Description("彩妆")]
|
||||
ColorProduct = 3,
|
||||
|
||||
/// <summary>
|
||||
/// 发饰
|
||||
/// </summary>
|
||||
[Description("发饰")]
|
||||
HairProduct = 4
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MyCode.Project.Infrastructure.Enumeration
|
||||
{
|
||||
/// <summary>
|
||||
/// 销售计划类型
|
||||
/// </summary>
|
||||
public enum PlanType
|
||||
{
|
||||
/// <summary>
|
||||
/// 产品销售计划表
|
||||
/// </summary>
|
||||
[Description("产品销售计划表")]
|
||||
ProductSalesPlan = 1,
|
||||
|
||||
/// <summary>
|
||||
/// 新客销售计划表
|
||||
/// </summary>
|
||||
[Description("新客销售计划表")]
|
||||
NewMemberSalesPlan = 2,
|
||||
|
||||
/// <summary>
|
||||
/// 老客复购销售计划
|
||||
/// </summary>
|
||||
[Description("老客复购")]
|
||||
OldMemberSalesPlan = 3,
|
||||
|
||||
/// <summary>
|
||||
/// 没有匹配到的商品剩余
|
||||
/// </summary>
|
||||
[Description("没有匹配到的商品剩余")]
|
||||
NoMatchSalesPlan = 999
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MyCode.Project.Infrastructure.Enumeration
|
||||
{
|
||||
/// <summary>
|
||||
/// 优先级
|
||||
/// </summary>
|
||||
public enum Priority
|
||||
{
|
||||
/// <summary>
|
||||
/// 紧急程度最高
|
||||
/// </summary>
|
||||
[Description("紧急程度最高")]
|
||||
High=1,
|
||||
|
||||
/// <summary>
|
||||
/// 中间
|
||||
/// </summary>
|
||||
[Description("中间")]
|
||||
Middle = 2,
|
||||
|
||||
/// <summary>
|
||||
/// 不紧急
|
||||
/// </summary>
|
||||
[Description("不紧急")]
|
||||
Low = 3
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,304 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MyCode.Project.Infrastructure.Enumeration
|
||||
{
|
||||
/// <summary>
|
||||
/// 报表类型
|
||||
/// </summary>
|
||||
public enum ReportType
|
||||
{
|
||||
/// <summary>
|
||||
/// 门店诊断报表
|
||||
/// </summary>
|
||||
[Description("门店诊断报表")]
|
||||
ShopDiagnoseDataExport = 1,
|
||||
|
||||
/// <summary>
|
||||
/// 门店诊断总报表--单店运营核心指标
|
||||
/// </summary>
|
||||
[Description("门店诊断总报表--单店运营核心指标")]
|
||||
SingleShopOperateSummaryExport = 2,
|
||||
|
||||
/// <summary>
|
||||
/// 门店诊断总报表--产品品项分析列表
|
||||
/// </summary>
|
||||
[Description("门店诊断总报表--产品品项分析列表")]
|
||||
ProductItemAnalysisSummaryExport = 3,
|
||||
|
||||
/// <summary>
|
||||
/// 会员统计--会员查询
|
||||
/// </summary>
|
||||
[Description("会员统计--会员查询")]
|
||||
MemberAssetInquiryExport = 4,
|
||||
|
||||
/// <summary>
|
||||
/// 会员余额变动明细
|
||||
/// </summary>
|
||||
[Description("会员余额变动明细")]
|
||||
MemberAccountBookLogExport = 5,
|
||||
|
||||
/// <summary>
|
||||
/// 会员消费明细
|
||||
/// </summary>
|
||||
[Description("会员消费明细")]
|
||||
MemberOrderExport = 6,
|
||||
|
||||
/// <summary>
|
||||
/// 会员服务明细
|
||||
/// </summary>
|
||||
[Description("会员服务明细")]
|
||||
MemberServiceOrderExport = 7,
|
||||
|
||||
/// <summary>
|
||||
/// 初始化会员余额变动明细
|
||||
/// </summary>
|
||||
[Description("初始化会员余额变动明细")]
|
||||
OldMemberAccountBookLogExport = 8,
|
||||
|
||||
/// <summary>
|
||||
/// 收款排名报表
|
||||
/// </summary>
|
||||
[Description("收款排名报表")]
|
||||
CollectionRankReportExport = 9,
|
||||
|
||||
/// <summary>
|
||||
/// 收款总报表
|
||||
/// </summary>
|
||||
[Description("收款总报表")]
|
||||
CollectionTotalReportExport = 10,
|
||||
|
||||
/// <summary>
|
||||
/// 店铺日业绩报表导出
|
||||
/// </summary>
|
||||
[Description("店铺日业绩报表导出")]
|
||||
ShopDaysPerformanceReportExport = 11,
|
||||
|
||||
/// <summary>
|
||||
/// 店铺月业绩报表导出
|
||||
/// </summary>
|
||||
[Description("店铺月业绩报表导出")]
|
||||
ShopMonthsPerformanceReportExport = 12,
|
||||
|
||||
/// <summary>
|
||||
/// 店铺运营业绩报表导出
|
||||
/// </summary>
|
||||
[Description("店铺运营业绩报表导出")]
|
||||
ShopOperationDataReportExport = 13,
|
||||
|
||||
/// <summary>
|
||||
/// 均店报表导出
|
||||
/// </summary>
|
||||
[Description("均店报表导出")]
|
||||
ShopAvgReportExport = 14,
|
||||
|
||||
/// <summary>
|
||||
/// 零售业绩报表
|
||||
/// </summary>
|
||||
[Description("零售业绩报表")]
|
||||
SalesNOMemberAmountReportExport = 15,
|
||||
|
||||
/// <summary>
|
||||
/// 门店经营月度报表
|
||||
/// </summary>
|
||||
[Description("门店经营月度报表")]
|
||||
RpShopJingYingYueBaoExport = 16,
|
||||
|
||||
/// <summary>
|
||||
/// 个人产品销售计划进度报表
|
||||
/// </summary>
|
||||
[Description("个人产品销售计划进度报表")]
|
||||
PersonalProductReportExport = 17,
|
||||
|
||||
/// <summary>
|
||||
/// 个人新客销售计划进度报表
|
||||
/// </summary>
|
||||
[Description("个人新客销售计划进度报表")]
|
||||
PersonalNewMemberReportExport = 18,
|
||||
|
||||
/// <summary>
|
||||
/// 个人老客复购邀约计划进度报表
|
||||
/// </summary>
|
||||
[Description("个人老客复购邀约计划进度报表")]
|
||||
PersonalOldMemberReportExport =19,
|
||||
|
||||
/// <summary>
|
||||
/// 产品销售计划进度报表
|
||||
/// </summary>
|
||||
[Description("产品销售计划进度报表")]
|
||||
BdAdminProductSalesPlanExport = 20,
|
||||
|
||||
/// <summary>
|
||||
/// 新客销售计划店铺明细报表
|
||||
/// </summary>
|
||||
[Description("新客销售计划店铺明细报表")]
|
||||
NewMemberReportDetailsExport = 22,
|
||||
|
||||
/// <summary>
|
||||
/// 新客销售计划进度报表
|
||||
/// </summary>
|
||||
[Description("新客销售计划进度报表")]
|
||||
NewMemberReportExport = 23,
|
||||
|
||||
/// <summary>
|
||||
/// 新客销售计划店铺明细报表
|
||||
/// </summary>
|
||||
[Description("新客销售计划店铺明细报表")]
|
||||
NewMemberReportDetailsExpor = 24,
|
||||
|
||||
/// <summary>
|
||||
/// 新客销售计划全部店铺明细报表
|
||||
/// </summary>
|
||||
[Description("新客销售计划全部店铺明细报表")]
|
||||
NewMemberALLDetailsExport = 25,
|
||||
|
||||
/// <summary>
|
||||
/// 老客复购邀约计划进度报表
|
||||
/// </summary>
|
||||
[Description("老客复购邀约计划进度报表")]
|
||||
OldMemberReportExport = 26,
|
||||
|
||||
/// <summary>
|
||||
/// 老客复购邀约计划店铺明细报表
|
||||
/// </summary>
|
||||
[Description("老客复购邀约计划店铺明细报表")]
|
||||
OldMemberReportDetailsExport = 27,
|
||||
|
||||
/// <summary>
|
||||
/// 老客复购邀约计划全部店铺明细报表
|
||||
/// </summary>
|
||||
[Description("老客复购邀约计划全部店铺明细报表")]
|
||||
OldMemberALLDetailsExport = 28,
|
||||
|
||||
/// <summary>
|
||||
/// 单店单月的产品销售计划进度详情
|
||||
/// </summary>
|
||||
[Description("单店单月的产品销售计划进度详情")]
|
||||
BdSingleShopPerMonthProductSalesPlanDetailExport = 29,
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 多个店铺多个月份的产品销售计划进度详情
|
||||
/// </summary>
|
||||
[Description("多个店铺多个月份的产品销售计划进度详情")]
|
||||
BdShopMonthProductSalesPlanDetailExport = 30,
|
||||
|
||||
/// <summary>
|
||||
/// 门店诊断环比
|
||||
/// </summary>
|
||||
[Description("门店诊断环比")]
|
||||
ShopDiagnosisMonthOnMonthComparisonExport = 31,
|
||||
|
||||
/// <summary>
|
||||
/// 门店诊断去年同比
|
||||
/// </summary>
|
||||
[Description("门店诊断去年同比")]
|
||||
ShopDiagnosisYearOnYearComparisonExport = 32,
|
||||
|
||||
/// <summary>
|
||||
/// 销售订单属性分析
|
||||
/// </summary>
|
||||
[Description("销售订单属性分析")]
|
||||
SalesOrderAttributeAnalysisExport = 33,
|
||||
|
||||
/// <summary>
|
||||
/// 区域看板报表
|
||||
/// </summary>
|
||||
[Description("区域看板报表")]
|
||||
GetRptQuYuKanBanForAMingExport = 34,
|
||||
|
||||
/// <summary>
|
||||
/// 样板店新客业绩日报
|
||||
/// </summary>
|
||||
[Description("样板店新客业绩日报")]
|
||||
GetYangBanBianXinKeDataExport = 35,
|
||||
|
||||
/// <summary>
|
||||
/// 样板店老客业绩日报
|
||||
/// </summary>
|
||||
[Description("样板店老客业绩日报")]
|
||||
GetYangBanBianLaoKeDataExport = 36,
|
||||
|
||||
/// <summary>
|
||||
/// 样板店新客业绩月报
|
||||
/// </summary>
|
||||
[Description("样板店新客业绩月报")]
|
||||
GetYangBanBianXinKeMonthDataExport = 37,
|
||||
|
||||
/// <summary>
|
||||
/// 样板店老客业绩月报
|
||||
/// </summary>
|
||||
[Description("样板店老客业绩月报")]
|
||||
GetYangBanBianLaoKeMonthDataExport = 38,
|
||||
|
||||
/// <summary>
|
||||
/// 会员价值报表
|
||||
/// </summary>
|
||||
[Description("会员价值报表")]
|
||||
MemberValueReportExport = 39,
|
||||
|
||||
/// <summary>
|
||||
/// 拓客卡体验管控表
|
||||
/// </summary>
|
||||
[Description("拓客卡体验管控表")]
|
||||
TuoKeTiYanGuanKongReportExport =40,
|
||||
|
||||
/// <summary>
|
||||
/// 拓客质量转化表
|
||||
/// </summary>
|
||||
[Description("拓客质量转化表")]
|
||||
RiFuWuTuiJinReportExport =41,
|
||||
|
||||
/// <summary>
|
||||
/// 留客转化日报表
|
||||
/// </summary>
|
||||
[Description("留客转化日报表")]
|
||||
LiuKeZhuanHuanReportExport =42,
|
||||
|
||||
/// <summary>
|
||||
/// 留客升客管控表
|
||||
/// </summary>
|
||||
[Description("留客升客管控表")]
|
||||
LiuKeShenKeGuanKongReportExport =43,
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 邀约及到店报表
|
||||
/// </summary>
|
||||
[Description("邀约及到店报表")]
|
||||
YaoYueDaoDianReportExport = 44,
|
||||
|
||||
/// <summary>
|
||||
/// 店铺转化漏斗数据表
|
||||
/// </summary>
|
||||
[Description("店铺转化漏斗数据表")]
|
||||
ShopConversionFunnelReportExport = 45,
|
||||
|
||||
/// <summary>
|
||||
/// 店员-样板店拓留锁升数据统计日报表
|
||||
/// </summary>
|
||||
[Description("店员-样板店拓留锁升数据统计日报表")]
|
||||
TuoLiuSuoShengDataReportExport = 46,
|
||||
|
||||
/// <summary>
|
||||
/// 服务质量转化表
|
||||
/// </summary>
|
||||
[Description("服务质量转化表")]
|
||||
RiFuWuZhuanHuaReportExport = 47,
|
||||
/// <summary>
|
||||
/// 店铺-样板店拓留锁升数据统计日报表
|
||||
/// </summary>
|
||||
[Description("店铺-样板店拓留锁升数据统计日报表")]
|
||||
ShopTuoLiuSuoShengDataReportExport = 48,
|
||||
|
||||
/// <summary>
|
||||
/// 样板店打造--数据监测
|
||||
/// </summary>
|
||||
[Description("样板店打造--数据监测")]
|
||||
YangBanDianJianCeExport = 49,
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MyCode.Project.Infrastructure.Enumeration
|
||||
{
|
||||
/// <summary>
|
||||
/// 销售订单项目类型
|
||||
/// </summary>
|
||||
public enum SalesSheetItemType
|
||||
{
|
||||
/// <summary>
|
||||
/// 商品
|
||||
/// </summary>
|
||||
[Description("商品")]
|
||||
Goods = 0,
|
||||
|
||||
/// <summary>
|
||||
/// 服务
|
||||
/// </summary>
|
||||
[Description("服务")]
|
||||
Service = 1,
|
||||
|
||||
/// <summary>
|
||||
/// 套餐
|
||||
/// </summary>
|
||||
[Description("套餐")]
|
||||
ServiceSet = 2,
|
||||
/// <summary>
|
||||
/// 卡券
|
||||
/// </summary>
|
||||
[Description("卡券")]
|
||||
ServiceCard = 3,
|
||||
|
||||
/// <summary>
|
||||
/// 自定义套餐
|
||||
/// </summary>
|
||||
[Description("自定义套餐")]
|
||||
ServiceCustom = 4,
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MyCode.Project.Infrastructure.Enumeration
|
||||
{
|
||||
public enum ShopKindType
|
||||
{
|
||||
/// <summary>
|
||||
/// 直营
|
||||
/// </summary>
|
||||
[Description("直营")]
|
||||
DirectSale = 1,
|
||||
|
||||
/// <summary>
|
||||
/// 联营
|
||||
/// </summary>
|
||||
[Description("联营")]
|
||||
JointSale = 2,
|
||||
|
||||
/// <summary>
|
||||
/// 加盟
|
||||
/// </summary>
|
||||
[Description("加盟")]
|
||||
FranchiseSale = 3,
|
||||
|
||||
/// <summary>
|
||||
/// 员工内购
|
||||
/// </summary>
|
||||
[Description("员工内购")]
|
||||
Employee = 4
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MyCode.Project.Infrastructure.Enumeration
|
||||
{
|
||||
public enum SystemType
|
||||
{
|
||||
/// <summary>
|
||||
/// 后台
|
||||
/// </summary>
|
||||
[Description("后台")]
|
||||
Admin = 1,
|
||||
|
||||
/// <summary>
|
||||
/// 微信端
|
||||
/// </summary>
|
||||
[Description("微信端")]
|
||||
Wechat = 2
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MyCode.Project.Infrastructure.Enumeration
|
||||
{
|
||||
public enum WorkProcessStatus
|
||||
{
|
||||
[Description("初始化")]
|
||||
Init = 0,
|
||||
|
||||
[Description("执行中")]
|
||||
Running = 1,
|
||||
|
||||
[Description("执行完成")]
|
||||
Finished = 9,
|
||||
|
||||
[Description("因错暂停")]
|
||||
Stop = 2
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user