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.

69 lines
2.0 KiB
C#

10 months ago
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; }
public int departmentid { get; set; }
public int subcompanyid1 { get; set; }
}
/// <summary>
/// 泛微OA 审核结果
/// 20230531 修改表名为view_workflowbase
/// 原为view_pjrequestbas
/// </summary>
[Table("view_workflowbase")]
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; }
}
[Table("view_xdf")]
public class view_xdf_md
{
[Key]
public int id { get; set; }
public int? requestId { get; set; }
public string yxzhmc { get; set; }
public string khx { get; set; }
public string yxzh { get; set; }
public string gyskhmc { get; set; }
public int? formmodeid { get; set; }
public int? modedatacreater { get; set; }
public int? modedatacreatertype { get; set; }
public string modedatacreatedate { get; set; }
public string modedatacreatetime { get; set; }
public int? modedatamodifier { get; set; }
public string modedatamodifydatetime { get; set; }
public string form_biz_id { get; set; }
public string MODEUUID { get; set; }
public string kjry { get; set; }
}
}