You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
652 B
C#

using DevExpress.DocumentServices.ServiceModel.DataContracts;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Mesnac.Action.ChemicalWeighing.Entity.Package
{
public class Hw_Package
{
public int ID { get; set; }
public string Name { get; set; }
public string BarCode { get; set; }
public string MaterialID { get; set; }
public string MaterialName { get; set; }
public string CreateDateTime { get; set; }
public string UpdateTime { get; set; }
public string IsEnable { get; set; }
}
}