18 lines
497 B
C#
18 lines
497 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Zxd.Entity.Zxd
|
|
{
|
|
[Table("RES_CUSTOMER")]
|
|
public class RES_CUSTOMER
|
|
{
|
|
[Key]
|
|
public string? RESID { get; set; }
|
|
public string? UMID { get; set; }
|
|
public string CUSTOMERID { get; set; }
|
|
public DateTime ctime { get; set; }
|
|
public string customerfrom { get; set; }
|
|
public string lastnum3 { get; set; }
|
|
}
|
|
} |