crm.core/code/Crm.Core.Entity/Crm/RES_CUSTOMER.cs

38 lines
893 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Crm.Core.Entity.Crm
{
[Table("RES_CUSTOMER")]
public partial class RES_CUSTOMER
{
[Key]
public string? RESID { get; set; }
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; }
/// <summary>
/// 来源类型
/// </summary>
public decimal? TYPE { get; set; }
public virtual RES_CUSTOMERDETAIL RES_CUSTOMERDETAIL { get; set; }
public virtual RES_RESOURCEMOBILE RES_RESOURCEMOBILE { get; set; }
}
}