22 lines
511 B
C#
22 lines
511 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.RES_ACTIVITY_EXPORTLOG")]
|
|
public partial class RES_ACTIVITY_EXPORTLOG
|
|
{
|
|
[Key]
|
|
public decimal LOGID { get; set; }
|
|
|
|
public decimal? SOURCEID { get; set; }
|
|
|
|
public short? SOURCETYPE { get; set; }
|
|
|
|
public DateTime? CTIME { get; set; }
|
|
|
|
public decimal? CREATEUSER { get; set; }
|
|
}
|
|
}
|