| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace LoginModel
- {
- //kf_app_correlation
- public class kf_app_correlation
- {
- /// <summary>
- /// id
- /// </summary>
- public int id { get; set; } = 0;
- /// <summary>
- /// kf_id
- /// </summary>
- public string kf_id { get; set; } = "";
- /// <summary>
- /// app_type_name
- /// </summary>
- public string app_type_name { get; set; } = "";
- /// <summary>
- /// app_id
- /// </summary>
- public string app_id { get; set; } = "";
- /// <summary>
- /// app_kf_account
- /// </summary>
- public string app_kf_account { get; set; } = "";
- /// <summary>
- /// kf_app_correlation_time
- /// </summary>
- public long kf_app_correlation_time { get; set; } = 0;
- /// <summary>
- /// kf_app_expire_date
- /// </summary>
- public long kf_app_expire_date { get; set; } = 0;
- }
- }
|