1234567891011121314151617181920212223242526272829303132333435 |
- using SqlSugar;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace SnapshotWinFormsApp.Entities.OldHotline;
- [SugarTable("SYS09_BMDIR")]
- public class SYS09_BMDIREntity : OldBaseEntity
- {
- [SugarColumn(ColumnName = "SBM_ID")]
- public override string Id { get => base.Id; set => base.Id = value; }
- //public string SBM_ID { get; set; }
- public string SBM_Name { get; set; }
- public string SBM_Code { get; set; }
- public string SBM_PID { get; set; }
- public string SBM_PName { get; set; }
- public string SBM_Flag { get; set; }
- public string SBM_Grade { get; set; }
- public string SBM_Order { get; set; }
- public string SBM_PY { get; set; }
- public string SBM_TypeName { get; set; }
- public string SBM_SimpleName { get; set; }
- public string SBM_NatureID { get; set; }
- public string SBM_FirstBMID { get; set; }
- public string SBM_DelFlag { get; set; }
- public string SBM_FirstBMName { get; set; }
- public string SBM_TwoBMID { get; set; }
- public string SBM_TwoBMName { get; set; }
- public string SBM_ThreeBMID { get; set; }
- public string SBM_ThreeBMName { get; set; }
- }
|