using System; namespace Zxd.Entity.Zxd { [Table("t_base_product")] public class BaseProduct { public BaseProduct() { } [Key] public int Id { get; set; } public string? Code { get; set; } public string? Name { get; set; } public decimal Price { get; set; } public int? Day { get; set; } public string? Moduleid { get; set; } public string? Remark { get; set; } public string? Extinfo { get; set; } public string? Appextinfo { get; set; } public string? Appext { get; set; } [Column("webimgurl")] public string? WebImgUrl { get; set; } [Column("appimgurl")] public string? AppImgUrl { get; set; } public int? Active { get; set; } public bool? Old { get; set; } public int? Groupid { get; set; } public DateTime Ctime { get; set; } [Column("update_time")] public DateTime? UpdateTime { get; set; } public string? Ext { get; set; } public bool? Compliance { get; set; } [Column("effective_immediately")] public bool? EffectiveImmediately { get; set; } public virtual List? BaseProductPackageRelations { get; set; } } }