using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace IvfTl.Control.Entity.DBEntitys
{
///
///
///
[SugarTable("test")]
public partial class test
{
public test(){
}
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey=true,IsIdentity=true)]
public int id {get;set;}
///
/// Desc:
/// Default:
/// Nullable:False
///
public DateTime time {get;set;}
}
}