ToolDto.cs 660 B

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.ComponentModel.DataAnnotations;
  3. using System.ComponentModel.DataAnnotations.Schema;
  4. namespace IMCS.CCS.Entitys.Dto
  5. {
  6. public class ToolDto
  7. {
  8. public string number { get; set; }
  9. public string name { get; set; }
  10. public string warnLife { get; set; }
  11. public string targetLife { get; set; }
  12. public string workPiece { get; set; }
  13. public string workPieceWarn { get; set; }
  14. public string workPieceTarget { get; set; }
  15. public string wear { get; set; }
  16. public string wearWarn { get; set; }
  17. public string wearTarget { get; set; }
  18. }
  19. }