You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using BPA.Helper;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.JXJFoodSmallStation.Model.Bom
- {
- public class BomMaterial:NotifyBase
- {
- public int Count { get { return _count; } set { _count = value; OnPropertyChanged(); } }
- public int _count { get; set; }
-
- public string MaterialCode { get { return _materialCode; }set { _materialCode = value;OnPropertyChanged(); } }
- private string _materialCode="";
-
- public string MaterialName { get { return _materialName; } set { _materialName = value; OnPropertyChanged(); } }
- private string _materialName="";
- }
- }
|