BehaviorDto.cs 618 B

1234567891011121314151617181920212223
  1. using WeEngine.Packages;
  2. namespace WeEngine.CommonDto.ReportDto
  3. {
  4. public class BehaviorDto
  5. {
  6. public BehaviorDto(BehaviorDataNode running)
  7. {
  8. Id = running.Id;
  9. No = running.No;
  10. Name = running.Name;
  11. Score = running.SystemScore;
  12. FullScore = running.FullScore;
  13. }
  14. public string Id { get; set; }
  15. public string No { get; set; }
  16. public string Name { get; set; }
  17. public decimal Score { get; set; }
  18. public decimal FullScore { get; set; }
  19. public string Description { get; set; }
  20. }
  21. }