You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
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
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 泛微OA 用用户名查找ID
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Table("view_hrmresource")]
|
|
|
|
|
|
|
|
|
|
public class view_hrmresource_md
|
|
|
|
|
{
|
|
|
|
|
[Key]
|
|
|
|
|
public int id { get; set; }
|
|
|
|
|
public string loginid { get; set; }
|
|
|
|
|
public string lastname { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 泛微OA 审核结果
|
|
|
|
|
/// </summary>
|
|
|
|
|
[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; }
|
|
|
|
|
}
|
|
|
|
|
}
|