ComplianceServer/code/Hg.Core.Entity/RES_CUSTOMER.cs

32 lines
677 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Hg.Core.Entity
{
[Table("RES_CUSTOMER")]
public partial class RES_CUSTOMER
{
[Key]
[StringLength(18)]
public string? RESID { get; set; }
[StringLength(50)]
public string? UMID { get; set; }
//[Required]
[StringLength(18)]
public string? CUSTOMERID { get; set; }
public DateTime? CTIME { get; set; }
[StringLength(100)]
public string? CUSTOMERFROM { get; set; }
[StringLength(20)]
public string? LASTNUM3 { get; set; }
}
}