crm.core/code/Crm.Core.Entity/PcWework/PcWwUserExtuser.cs

40 lines
854 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Crm.Core.Entity.PcWework
{
[Table("ww_user_extuser")]
public class PcWwUserExtuser
{
[Key]
public string userid { get; set; }
[Key]
public string extuserid { get; set; }
public string corpid { get; set; }
public string remark { get; set; }
public string description { get; set; }
public string tags_type1 { get; set; }
public string tags_type2 { get; set; }
public string remark_corp_name { get; set; }
public int add_type { get; set; }
public int add_way { get; set; }
public long createtime { get; set; }
public bool deleted { get; set; }
public int errnum { get; set; }
}
}