using System.ComponentModel; namespace LifePayment.Domain.Shared; /// /// 企业类型 /// public enum EnterpriseTypeEnum { /// /// 人力资源公司 /// [Description("人力资源公司")] HREnterprise = 10, /// /// 甲方企业 /// [Description("甲方企业")] FirstPartyCompany = 20, /// /// 行业配套 /// [Description("行业配套")] IndustryMating = 30, /// /// 行业机构 /// [Description("行业机构")] IndustryBody = 40, } /// /// 性别枚举 /// public enum GenderTypeEnum { /// /// 男 /// [Description("男")] Male = 1, /// /// 女 /// [Description("女")] Female = 2, }