using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
namespace SA.Entity.zxdcrm_audit_Models
{
///
///
///
[SugarTable("b_audit_check")]
public class b_audit_check
{
///
///
///
[SugarColumn(ColumnName="id" ,IsPrimaryKey = true ,IsIdentity = true )]
public int id { get; set; }
///
///
///
[SugarColumn(ColumnName="monkey" )]
public int monkey { get; set; }
///
///
///
[SugarColumn(ColumnName="itemId" )]
public int? itemId { get; set; }
///
///
///
[SugarColumn(ColumnName="item" )]
public string item { get; set; } ="";
///
///
///
[SugarColumn(ColumnName="categorie" )]
public string categorie { get; set; } ="";
///
///
///
[SugarColumn(ColumnName="categorieName" )]
public string categorieName { get; set; } ="";
///
///
///
[SugarColumn(ColumnName="resultskv" )]
public string resultskv { get; set; } ="";
///
///
///
[SugarColumn(ColumnName="ctime" )]
public DateTime ctime { get; set; }
}
}