41 lines
913 B
C#
41 lines
913 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace model
|
|
{
|
|
[Table("ww_user_extuser")]
|
|
public class ww_user_extuser
|
|
{
|
|
[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; }
|
|
}
|
|
}
|