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.
DS7/JobYunDang/Model/ydw_carriage.cs

25 lines
695 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JobYunDang.Model
{
public class ydw_carriage
{
public string keyid { get; set; }
public string bkeyid { get; set; }
public short? sno { get; set; }
public string vslname { get; set; }
public string voy { get; set; }
public string blno { get; set; }
public string pol { get; set; }
public string pod { get; set; }
public DateTime? etd { get; set; }
public DateTime? eta { get; set; }
public DateTime? atd { get; set; }
public DateTime? ata { get; set; }
}
}