ComplianceServer/oldcode/Model/Entity/WW_HHUSER_EID_ACT.cs

41 lines
1.2 KiB
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.Entity
{
[Table("UPDEV.WW_HHUSER_EID_ACT")]
public class WW_HHUSER_EID_ACT
{
public WW_HHUSER_EID_ACT()
{
}
public WW_HHUSER_EID_ACT(decimal iD, string aPPID, string uSERID, decimal eID, decimal? status, string aCT)
: this(iD, aPPID, uSERID, eID, status, DateTime.Now, aCT, 0)
{
}
public WW_HHUSER_EID_ACT(decimal iD, string aPPID, string uSERID, decimal eID, decimal? status, DateTime cTIME, string aCT, decimal iSEXE)
{
ID = iD;
APPID = aPPID;
USERID = uSERID;
EID = eID;
this.ASSIGNSTATUS = status;
CTIME = cTIME;
ACT = aCT;
ISEXE = iSEXE;
}
[Key]
public decimal ID { get; set; }
public string APPID { get; set; }
public string USERID { get; set; }
public decimal? ASSIGNSTATUS { get; set; }
public decimal EID { get; set; }
public DateTime CTIME { get; set; }
public string ACT { get; set; }
public decimal ISEXE { get; set; }
}
}