26 lines
603 B
C#
26 lines
603 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.BAS_PROCEXECUTE_LOG")]
|
|
public partial class BAS_PROCEXECUTE_LOG
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
|
|
public DateTime? STARTTIME { get; set; }
|
|
|
|
public DateTime? ENDTIME { get; set; }
|
|
|
|
public decimal? STATUS { get; set; }
|
|
|
|
[StringLength(200)]
|
|
public string CONTENT { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string PROCTYPE { get; set; }
|
|
}
|
|
}
|