ComplianceServer/oldcode/Model/Entity/WX_DBUPLOADLOG.cs

27 lines
616 B
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.WX_DBUPLOADLOG")]
public partial class WX_DBUPLOADLOG
{
[Key]
public decimal PKID { get; set; }
[StringLength(200)]
public string USERNAME { get; set; }
[StringLength(200)]
public string DBFILE { get; set; }
[StringLength(10)]
public string PASSWORD { get; set; }
public DateTime? CTIME { get; set; }
public DateTime? COPYTIME { get; set; }
}
}