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.
75 lines
2.6 KiB
C#
75 lines
2.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using HcUtility.Core;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace DSWeb.Areas.Import.Models.RptImportFeedetail
|
|
{
|
|
[JsonObject]
|
|
public class RptImportFeedetail : ModelObjectBillHead
|
|
{
|
|
[ModelDB(MDBType = ModelDBOprationType.Edit, IsPrimary = true)]
|
|
public string GId { get; set; }
|
|
public string ContractNo { get; set; }
|
|
public string HTH { get; set; }
|
|
public string seller { get; set; }
|
|
public string buyer { get; set; }
|
|
|
|
public string Billno { get; set; }
|
|
public string Vessel { get; set; }
|
|
public string Voyage { get; set; }
|
|
public string Sailingdate { get; set; }
|
|
|
|
public string ArrivalDate { get; set; }
|
|
public string ContainerNo { get; set; }
|
|
public string SealNo { get; set; }
|
|
public string creattime { get; set; }
|
|
|
|
public string FeeType_Ref { get; set; }
|
|
public string FeeStatus_Ref { get; set; }
|
|
public string FeeStatus { get; set; }
|
|
public string FeeName_Ref { get; set; }
|
|
public string FeeDescription { get; set; }
|
|
public string CustomerName_Ref { get; set; }
|
|
public string Unit { get; set; }
|
|
public string Currency { get; set; }
|
|
public string Remark { get; set; }
|
|
|
|
public decimal UnitPrice { get; set; }
|
|
public decimal Quantity { get; set; }
|
|
public string Amount_YS { get; set; }
|
|
public string Amount_YF { get; set; }
|
|
public string Amount_RMBYS { get; set; }
|
|
public string Amount_RMBYF { get; set; }
|
|
public string ExChangerate { get; set; }
|
|
|
|
public string EnterDate { get; set; }
|
|
public string dotype { get; set; }
|
|
public string remain { get; set; }
|
|
public string CreateUser { get; set; }
|
|
public string AC_AD { get; set; }
|
|
public string CR_DR { get; set; }
|
|
//public string DR { get; set; }
|
|
|
|
[ModelDB]
|
|
public string ACCDATE { get; set; }
|
|
[ModelDB]
|
|
public string ISVOU { get; set; }
|
|
[ModelDB]
|
|
public string VOUCHERNO { get; set; }
|
|
public string VOUNO { get; set; }
|
|
|
|
public string AUDITOPERATOR { get; set; }
|
|
public string AUDITDATE { get; set; }
|
|
public string SETTLEMENT_ys { get; set; }
|
|
public string SETTLEMENT_yf { get; set; }
|
|
public string REMAIN { get; set; }
|
|
public string CARGONAME { get; set; }
|
|
public string COMPANY { get; set; }
|
|
public string OP { get; set; }
|
|
public string DEBITNO { get; set; }
|
|
public string INV { get; set; }
|
|
}
|
|
} |