23 lines
610 B
C#
23 lines
610 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Mini.Model.Entity
|
|
{
|
|
public class Ww_DeptUser
|
|
{
|
|
[Key, Column(Order = 0)]
|
|
public string userid { get; set; }
|
|
[Key, Column(Order = 1)]
|
|
public string corpid { get; set; }
|
|
public string name { get; set; }
|
|
public string department { get; set; }
|
|
public DateTime? ctime { get; set; }
|
|
public string open_userid { get; set; }
|
|
|
|
}
|
|
} |