| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- 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; }
- }
- }
- }
|