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/DSWeb/Areas/Import/Models/RptProfit/RptProfit.cs

36 lines
966 B
C#

2 years ago
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using HcUtility.Core;
using Newtonsoft.Json;
namespace DSWeb.Areas.Import.Models.RptProfit
{
[JsonObject]
public class RptProfitmb : ModelObjectBillHead
{
public string gid { get; set; }
public string ContractNo { get; set; }
public string HTH { get; set; }
public string CustomerName { get; set; }
public string FeeType { get; set; }
public string FeeName { get; set; }
public string ys_ref { get; set; }
public string yf_ref { get; set; }
public string y_ref { get; set; }
public string ss_ref { get; set; }
public string sf_ref { get; set; }
public string s_ref { get; set; }
public string FeeDate { get; set; }
//public string ArrivalDate { get; set; }
public string Remark { get; set; }
public string ZJY { get; set; }
}
}