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