using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LoginModel { [Serializable] //enterprise public class enterprise { /// /// ind_id /// public string ind_id { get; set; } = ""; /// /// ent_id /// public string ent_id { get; set; } = ""; /// /// ent_name /// public string ent_name { get; set; } = ""; /// /// ent_leal_persion /// public string ent_leal_persion { get; set; } = ""; /// /// ent_phone /// public string ent_phone { get; set; } = ""; /// /// ent_web_site /// public string ent_web_site { get; set; } = ""; /// /// ent_address /// public string ent_address { get; set; } = ""; /// /// ent_kf_count /// public int ent_kf_count { get; set; } = 0; /// /// ent_kf_usage_days /// public int ent_kf_usage_days { get; set; } = 0; /// /// record_gen_time /// public long record_gen_time { get; set; } = 0; /// /// ent_note /// public string ent_note { get; set; } = ""; /// /// server_id /// public string server_id { get; set; } = ""; } }