misolutions

Model_DB

Oct 17th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.12 KB | None | 0 0
  1.  public class LmsDisposal
  2.     {
  3.         public int BIL { get; set; }
  4.         public int ID { get; set; }
  5.         public string REF_NO { get; set; }
  6.         public DateTime TKH_MOHON { get; set; }
  7.         public int PEMOHON_FK { get; set; }
  8.         public string PEMOHON_JAWATAN { get; set; }
  9.         public string PEMOHON_PTJ { get; set; }
  10.         public int LAB_ID { get; set; }
  11.         public int STATUS_FK { get; set; }
  12.         public string STATUS_AKTIF { get; set; }
  13.         public int C_ID { get; set; }
  14.         public DateTime C_TS { get; set; }
  15.         public int M_ID { get; set; }
  16.         public DateTime M_TS { get; set; }
  17.         public int D_ID { get; set; }
  18.         public DateTime D_TS { get; set; }
  19.         public int JENIS_MOHON { get; set; }
  20.         public string RADIS_REF_ID { get; set; }
  21.         public double KOS_LUPUS { get; set; }
  22.  
  23.  
  24.  
  25.         // -- MANUAL ADD -- //
  26.         public string STRING_TKH_MOHON { get; set; }
  27.         public string STRING_STATUS { get; set; }
  28.         public string NAME { get; set; }
  29.         //public int STAF_NO { get; set; }
  30.         public string LAB_NAME { get; set; }
  31.         public string STRING_STATUS_FK { get; set; }
  32.         //public int STAF_LOGIN_ID { get; set; }
  33.        
  34.         public user USER_DETAIL { get; set; }
  35.         public user_access BTN_ACTION { get; set; }
  36.         public List<LmsDisposalDetail> DISPO_DETAIL { get; set; }
  37.         public List<LmsDisposalHazard> DISPO_HAZARD { get; set; }
  38.     }
  39. public class LmsDisposalHazard
  40.     {
  41.         public int ID { get; set; }
  42.         public int DISPOSAL_DETAIL_ID { get; set; }
  43.         public int KATEGORI_HAZAD_ID { get; set; }
  44.         public string KATEGORI_HAZAD_LAIN { get; set; }
  45.         public bool STATUS_AKTIF { get; set; }
  46.         public int C_ID { get; set; }
  47.         public DateTime C_TS { get; set; }
  48.         public int M_ID { get; set; }
  49.         public DateTime M_TS { get; set; }
  50.  
  51.  
  52.        
  53.         //MANUAL ADD AT CHEM HAZARD
  54.         public string IMAGE_HAZAD { get; set; }
  55.         public string HAZAD_NAME { get; set; }
  56.         public string STRING_STATUS_AKTIF { get; set; }
  57.     }
Add Comment
Please, Sign In to add comment