Zxd.Core/code/Zxd.Entity/Crm/Module.cs

44 lines
957 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Zxd.Entity.Crm
{
[Table("t_module")]
public class Module
{
[Key]
public string? Id { get; set; }
public string? Name { get; set; }
public bool? Flag { get; set; }
[Column("appimgurl")]
public string? AppImgUrl { get; set; }
public DateTime? Ctime { get; set; }
[Column("update_time")]
public DateTime? UpdateTime { get; set; }
[Column("risklevel")]
public int RiskLevel { get; set; }
[Column("investtime")]
public int InvestTime { get; set; }
[Column("investtype")]
public int InvestType { get; set; }
[Column("compliance")]
public bool Compliance { get; set; }
public int Type { get; set; }
public virtual List<Product>? Product { get; set; }
}
}