using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Core.StlMes.Client.Mcp.VRP.Entity { public class ChangeLen { private bool _check; public bool check { get { return _check; } set { _check = value; } } private decimal? orLen; public decimal? OrLen { get { return orLen; } set { orLen = value; } } private int orCount; public int OrCount { get { return orCount; } set { orCount = value; } } private decimal? editLen; public decimal? EditLen { get { return editLen; } set { editLen = value; } } private int? editCount; public int? EditCount { get { return editCount; } set { editCount = value; } } } }