12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace NX.ERP.Model.Request
- {
- public class Material: BaseModel
- {
- private string _code;
- private string _name;
-
- public string MaterialCode { get => _code; set => _code = value; }
- public string MaterialName { get => _name; set => _name = value; }
- public string MaterialTypeCode { get; set; }
- public string SpecsModel { get; set; }
-
- }
- }
|