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.
22 lines
451 B
22 lines
451 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace ICSSoft.Frame.Data.Entity.OM_PO
|
|
{
|
|
public class OM_POmain
|
|
{
|
|
public string UserCode { get; set; }
|
|
|
|
public string POID { get; set; }
|
|
|
|
public string cIWhCode { get; set; }
|
|
|
|
public string cOWhCode { get; set; }
|
|
|
|
public string MODId { get; set; }
|
|
|
|
public List<OM_PODetails> list { get; set; }
|
|
}
|
|
}
|