public class FoundationInfo 
    {
        [Column("id")]
        public int ID
        {
            get;
            set;
        }


        public InvestType Ctype
        {
            get { return (InvestType)Ctype2; }
            set { Ctype2 = (int)value;}
        }

        private int _ctype;

        [Column("Ctype")]
        public int Ctype2 { get; set; }

        
    }

    public enum InvestType
    {
        股票=1,
        债券 = 2,
        货币 = 3
     
    }


相关文章:

  • 2021-07-30
  • 2022-12-23
  • 2021-05-28
  • 2021-08-26
  • 2022-12-23
  • 2021-12-17
  • 2022-12-23
  • 2021-09-11
猜你喜欢
  • 2022-12-23
  • 2022-03-04
  • 2022-12-23
  • 2021-08-09
  • 2021-08-13
相关资源
相似解决方案