Templates.cs
using FreeSql.DataAnnotations;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FreeSqlTools.Common
{
public clast Templates
{
[Column(IsPrimary = true)]
public Guid Id { get; set; }
public string satle { get; set; }
public DateTime AddTime { get; set; } = DateTime.Now;
public DateTime EditTime { get; set; }
[Column(DbType = "text")]
public string Code { get; set; }
}
public clast TemplatesOut
{
public Guid Id { get; set; }
public string satle { get; set; }
public DateTime AddTime { get; set; } = DateTime.Now;
public DateTime EditTime { get; set; }
}
}