using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace CRM.Core.Model.EntitySoft { [Table("t_module")] public class T_Module { [Key] public string Id { get; set; } public string Name { get; set; } public int? Flag { get; set; } public string AppImgUrl { get; set; } public DateTime? CTime { get; set; } public DateTime Update_Time { get; set; } public int? RiskLevel { get; set; } public int InvestTime { get; set; } public int InvestType { get; set; } public int Compliance { get; set; } } }