using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace IMCS.CCS.Entitys.Dto { public class ToolDto { public string number { get; set; } public string name { get; set; } public string warnLife { get; set; } public string targetLife { get; set; } public string workPiece { get; set; } public string workPieceWarn { get; set; } public string workPieceTarget { get; set; } public string wear { get; set; } public string wearWarn { get; set; } public string wearTarget { get; set; } } }