1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- using CZFW.Framework.Model.Entity;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations.Schema;
- using System.Text;
- namespace CZKJ.GBRS2.Entity
- {
- [Table("gbrs2_customerinfo")]
- public class CustomerInfoEntity:EntityBase
- {
- public string User_id { get; set; }
- public string Type { get; set; }
- public string Channel { get; set; }
- public string Job_number { get; set; }
- public string Lock_flag { get; set; }
- public string Email { get; set; }
- public string Mobile { get; set; }
- public string Nickname { get; set; }
- public string Head_url { get; set; }
- public string Wx_open_id { get; set; }
- public string Wx_union_id { get; set; }
- public string Core_customer_code { get; set; }
- public string Department { get; set; }
- public string On_job { get; set; }
- public string Out_user_id { get; set; }
- public string Gender { get; set; }
- public string Id_type { get; set; }
- public string Id_no { get; set; }
- public string Name { get; set; }
- public string Birthday { get; set; }
- public DateTime LastLoginTime { get; set; }
- }
-
- }
|