MomOrder.cs 264 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace NX.ERP.BLL.Model
  6. {
  7. public class MomOrder
  8. {
  9. public string product_order_no { get; set; }
  10. public string product_code { get; set; }
  11. }
  12. }