Model
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data.Linq.Mapping;
using System.Data;
namespace GoldAnt.Model
{
[Serializable]
[Table(Name = "CargoList")]
public class CargoListModel
{
/// <summary>
/// 默认不带参数的构造函数
/// Defualt function
/// </summary>
public CargoListModel() { }
//TODO:如果需要,请自行添加带参数的构造行数。
//TODO:plase ADD Function with param
/// <summary>
/// 主键 编号列
/// PrimaryKey Colunm ID
/// </summary>
[Column(Name = "ListId", IsPrimaryKey = true)]
public string ListId { get; set; }
#region
[Column(Name = "Accept_Dt")]
public DateTime? Accept_Dt { get; set; }// public System.Nullable<System.DateTime> Last_Dt { get; set; }
#endregion
}
浙公网安备 33010602011771号