TbDataViewerBusiObj.cs 452 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
  4. {
  5. public partial class TbDataViewerBusiObj
  6. {
  7. public string DataViewerId { get; set; } = null!;
  8. public string BusiObjId { get; set; } = null!;
  9. public string BusiObjName { get; set; } = null!;
  10. public int SeqNo { get; set; }
  11. public virtual TbDataViewer DataViewer { get; set; } = null!;
  12. }
  13. }