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