using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Web; namespace DSWeb.Common.DB { /// /// 泛微OA 用用户名查找ID /// [Table("view_hrmresource")] public class view_hrmresource_md { [Key] public int id { get; set; } public string loginid { get; set; } public string lastname { get; set; } } /// /// 泛微OA 审核结果 /// [Table("view_pjrequestbas")] public class view_pjrequestbas_md { [Key] public int requestid { get; set; } public int workflowid { get; set; } public string requestname { get; set; } public int creater { get; set; } public int lastoperator { get; set; } public string lastoperatedate { get; set; } public string lastoperatetime { get; set; } public string currentnodetype { get; set; } } }