12345678910111213141516171819202122232425 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class FmsWorkResultLaw
- {
- public int SiteId { get; set; }
- public int WorkRequestId { get; set; }
- public string CertificationNo { get; set; }
- public Nullable<decimal> CheckCommission { get; set; }
- public Nullable<bool> CheckResult { get; set; }
-
- public virtual FmsWorkResult FmsWorkResult { get; set; }
- }
- }
|