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.

30 lines
924 B
C#

10 months ago
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JobYunDang.Model
{
public class ydw_ctnrinfo
{
public string keyid { get; set; }
public string bkeyid { get; set; }
public string vkeyid { get; set; }
public string conno { get; set; }
public string sealno { get; set; }
public string csize { get; set; }
public string ctype { get; set; }
public string ctnrtype { get; set; }
public string pkgs { get; set; }
public string gwgt { get; set; }
public string vgm { get; set; }
public string currentstatus { get; set; }
public DateTime? currenttime { get; set; }
public string currentstation { get; set; }
public DateTime? updatetime { get; set; }
public List<ydw_ctnrstatus> lstctnrstatus { get; set; }
}
}