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/BookingJieFeng/Models/RespOpseae.cs

23 lines
693 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace BookingJieFeng.Models
{
public class OpseaeListViewModel
{
public string BSNO { get; set; }
public string VESSEL { get; set; }
public string VOYNO { get; set; }
public string MBLNO { get; set; }
public string INVNO { get; set; }
public string CUSTOMNO { get; set; }
public string CNTRTOTAL { get; set; }
public string ETD { get; set; }
public string ETA { get; set; }
public string YARD { get; set; }
public decimal? AMOUNT_RMB { get; set; }
public decimal? AMOUNT_USD { get; set; }
}
}