using System; using System.Linq; using System.Text; using SqlSugar; namespace Tiobon.Core.Model.Models { /// /// /// [SugarTable("WeChatCompany")] public partial class WeChatCompany { /// /// 公司ID /// [SugarColumn(IsPrimaryKey = true, Length = 100, IsNullable = false)] public string CompanyID { get; set; } /// /// 公司名称 /// [SugarColumn(Length = 100, IsNullable = false)] public string CompanyName { get; set; } /// /// 公司IP /// [SugarColumn(Length = 100, IsNullable = false)] public string CompanyIP { get; set; } /// /// 公司备注 /// [SugarColumn(Length = 200, IsNullable = false)] public string CompanyRemark { get; set; } /// /// api地址 /// [SugarColumn(Length = 200, IsNullable = false)] public string CompanyAPI { get; set; } /// /// 是否激活 /// public bool Enabled { get; set; } /// /// 创建者id /// [SugarColumn(IsNullable = true)] public int? CreateId { get; set; } /// /// 创建人 /// [SugarColumn(IsNullable = true)] public string CreateBy { get; set; } /// /// 创建时间 /// [SugarColumn(IsNullable = true)] public DateTime? CreateTime { get; set; } /// /// 修改者id /// [SugarColumn(IsNullable = true)] public int? ModifyId { get; set; } /// /// 修改人 /// [SugarColumn(IsNullable = true)] public string ModifyBy { get; set; } /// /// 修改时间 /// [SugarColumn(IsNullable = true)] public DateTime? ModifyTime { get; set; } } }