123456789101112131415161718192021222324 |
- using SqlSugar;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.IO.Pipes;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace SnapshotWinFormsApp.Entities.NewHotline;
- [Description("老数据Id")]
- [SugarTable("old_data_id")]
- public class OldDataId : SoftDeleteEntity
- {
- [Description("旧数据Id")]
- public string OldId { get; set; }
- [Description("表明")]
- public string TableName { get; set; }
- [Description("新数据Id")]
- public string NewId { get; set; }
- }
|