12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace NX.ERP.Model.Request
- {
- public class Unit:BaseModel
- {
- private string unitCode;
- private string unitName;
-
- public string UnitCode { get => unitCode; set => unitCode = value; }
- public string UnitName { get => unitName; set => unitName = value; }
-
- }
- }
|