using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
namespace SA.Entity.zxdcrm_audit_Models
{
///
/// 客户表
///
[SugarTable("res_customer")]
public class res_customer
{
///
///
///
[SugarColumn(ColumnName="resid" ,IsPrimaryKey = true )]
public string resid { get; set; } ="";
///
///
///
[SugarColumn(ColumnName="customerid" )]
public string customerid { get; set; } ="";
///
///
///
[SugarColumn(ColumnName="ctime" )]
public DateTime? ctime { get; set; }
///
///
///
[SugarColumn(ColumnName="customerfrom" )]
public string customerfrom { get; set; } ="";
///
///
///
[SugarColumn(ColumnName="lastnum3" )]
public string lastnum3 { get; set; } ="";
}
}