You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
722 B

1 month ago
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace bill_statistics
{
public enum BillModeType
{
NORMAL = 0,
EXPORT_HOUR_LOG = 1, //导入小时数据,考虑到兼容性,多执行几个小时的日志
EXPROT_DAY_STAT = 2, //计算数据(比如留存)并写入数据库
EXPROT_ALL_HOUR = 3, //所有小时数据
EXPROT_ALL_DAY = 4, //所有日数据
EXPROT_TODAY_STAT = 5, //导入今天的数据
LONG_KEEP = 6, //计算长时间的留存,支付数据,比如180日留存
}
public static class BillMode
{
public static BillModeType Mode = BillModeType.NORMAL;
}
}