19 lines
422 B
C#
19 lines
422 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Zxd.Entity.Zxd
|
|
{
|
|
[Table("RES_CUSTOMERUSER")]
|
|
public partial class RES_CUSTOMERUSER
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
|
|
public string? RESID { get; set; }
|
|
|
|
public string? USERNAME { get; set; }
|
|
|
|
public DateTime? CTIME { get; set; }
|
|
}
|
|
} |