dengjunjie
2025-10-24 521fdf6c46213cad7c5c55015401154db0e78848
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//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; }
 
 
//    }
//}