using System; using System.Collections.Generic; using System.Text; namespace CoreEntity.Entity { [Serializable] public class Mem_Logisticsent { private int _logisticsentkey; private string _logisticsentcode; private string _logisticsentname; private string _logisticsentcodeext; public Mem_Logisticsent() { } public int LogisticsEntKey { get { return _logisticsentkey; } set { _logisticsentkey = value; } } public string LogisticsEntCode { get { return _logisticsentcode; } set { _logisticsentcode = value; } } public string LogisticsEntName { get { return _logisticsentname; } set { _logisticsentname = value; } } public string LogisticsEntCodeExt { get { return _logisticsentcodeext; } set { _logisticsentcodeext = value; } } } }