feat: add points rule enums

This commit is contained in:
Sam 2026-02-08 21:19:42 +08:00
parent 05631b6589
commit 90c6912fd5
3 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,7 @@
namespace Fengling.Member.Domain.Aggregates.PointsRuleModel.Enums;
public enum CalculationMode
{
Synchronous = 1,
Asynchronous = 2
}

View File

@ -0,0 +1,9 @@
namespace Fengling.Member.Domain.Aggregates.PointsRuleModel.Enums;
public enum DimensionType
{
Product = 1,
Dealer = 2,
Distributor = 3,
Store = 4
}

View File

@ -0,0 +1,7 @@
namespace Fengling.Member.Domain.Aggregates.PointsRuleModel.Enums;
public enum RuleType
{
FixedValue = 1,
PriceWeighted = 2
}