16 lines
319 B
C#
16 lines
319 B
C#
namespace YLErp.Configuration
|
|
{
|
|
public enum ComponentVersion
|
|
{
|
|
/// <summary>
|
|
/// 自营,做市商模式,比如国君
|
|
/// </summary>
|
|
MarketMaker,
|
|
|
|
/// <summary>
|
|
/// 中间商,通道业务模式,比如申万
|
|
/// </summary>
|
|
Broker
|
|
}
|
|
}
|