using System.ComponentModel; namespace xTPLM.RFQ.Common.Enum { /// /// 发行方式 /// public enum IssueMode { /// /// 公开发行 /// [Description("公开发行")] OpenIssue = 0, /// /// 定向发行 /// [Description("定向发行")] OrientationIssue = 1 } }