30 lines
730 B
C#
30 lines
730 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using SqlSugar;
|
|
namespace SA.Entity.zxdcrm_audit_Models
|
|
{
|
|
/// <summary>
|
|
///
|
|
///</summary>
|
|
[SugarTable("company_wechat_chat")]
|
|
public class company_wechat_chat
|
|
{
|
|
/// <summary>
|
|
///
|
|
///</summary>
|
|
[SugarColumn(ColumnName="resid" )]
|
|
public string resid { get; set; } ="";
|
|
/// <summary>
|
|
///
|
|
///</summary>
|
|
[SugarColumn(ColumnName="count" )]
|
|
public decimal? count { get; set; }
|
|
/// <summary>
|
|
///
|
|
///</summary>
|
|
[SugarColumn(ColumnName="minmsgtime" )]
|
|
public DateTime? minmsgtime { get; set; }
|
|
}
|
|
}
|