//using SqlSugar; //using System; //using System.Collections.Generic; //using System.Linq; //using System.Text; //using System.Threading.Tasks; //using WIDESEA_Core.DB.Models; //namespace WIDESEA_Model.Models.SquareCabin //{ // [SugarTable("ErrorLog1","日志报错表,完成一个接口报错的时候,实时给不需要建表")] // public class Dt_ErrorLog:BaseEntity // { // [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] // public int Id { get; set; } // [SugarColumn(IsNullable = true, Length = 2, ColumnDescription = "业务类型(1入库单,2入库完成,3出库单,4出库完成,5药品基础,6供应商,7客户,8库存查询)")] // public string Type { get; set; } // [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "关键编码/单号,记录接口关键字段")] // public string Code { get; set; } // [SugarColumn(IsNullable =true,Length =200,ColumnDescription = "异常信息")] // public string Message { get; set; } // [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "备注")] // public string Remark { get; set; } // } //}