feat: add points rule enums
This commit is contained in:
parent
05631b6589
commit
90c6912fd5
@ -0,0 +1,7 @@
|
||||
namespace Fengling.Member.Domain.Aggregates.PointsRuleModel.Enums;
|
||||
|
||||
public enum CalculationMode
|
||||
{
|
||||
Synchronous = 1,
|
||||
Asynchronous = 2
|
||||
}
|
||||
@ -0,0 +1,9 @@
|
||||
namespace Fengling.Member.Domain.Aggregates.PointsRuleModel.Enums;
|
||||
|
||||
public enum DimensionType
|
||||
{
|
||||
Product = 1,
|
||||
Dealer = 2,
|
||||
Distributor = 3,
|
||||
Store = 4
|
||||
}
|
||||
@ -0,0 +1,7 @@
|
||||
namespace Fengling.Member.Domain.Aggregates.PointsRuleModel.Enums;
|
||||
|
||||
public enum RuleType
|
||||
{
|
||||
FixedValue = 1,
|
||||
PriceWeighted = 2
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user