16 lines
237 B
C#
16 lines
237 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YLErp.Enums
|
|
{
|
|
public enum OpenCloseEnum
|
|
{
|
|
None = 0,
|
|
开仓,
|
|
平仓
|
|
}
|
|
}
|