18 lines
502 B
C#
18 lines
502 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
[Table("UPDEV.WX_UPLOADMAXCREATETIME")]
|
|
public class WX_UPLOADMAXCREATETIME
|
|
{
|
|
[Key]
|
|
public string USERNAME { get; set; }
|
|
public decimal? CREATETIME { get; set; }
|
|
public DateTime? CREATETIMEWIN { get; set; }
|
|
public DateTime? UPTIME { get; set; }
|
|
public string QUNFACLIENTID { get; set; }
|
|
|
|
}
|
|
} |