| 12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Pur.Entity
- {
- class Measure
- {
- private string[] ordernos;
- public string[] Ordernos
- {
- get { return ordernos; }
- set { ordernos = value; }
- }
- private string orderno;
- public string Orderno
- {
- get { return orderno; }
- set { orderno = value; }
- }
-
- }
- }
|