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.

39 lines
1.3 KiB
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_billinfo
{
public string keyid { get; set; }
public string blprefix { get; set; }
public string bkgno { get; set; }
public string blno { get; set; }
public string carriercd { get; set; }
public string carrier { get; set; }
public string plrcd { get; set; }
public string plr { get; set; }
public string polcd { get; set; }
public string pol { get; set; }
public string dtpcd { get; set; }
public string dtp { get; set; }
public string pldcd { get; set; }
public string pld { get; set; }
public string bkgvolumn { get; set; }
public string vslname { get; set; }
public string voy { get; set; }
public DateTime? updatetime { get; set; }
public DateTime? createtime { get; set; }
public string blid { get; set; }
public string currentnode { get; set; }
public DateTime? currentnodetime { get; set; }
public string currentnodeplace { get; set; }
public List<ydw_carriage> lstcarriages { get; set; }
public List<ydw_ctnrinfo> lstctnrinfos { get; set; }
}
}