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/MvcShipping/Models/MsCustomReport/MsCustomReportModel.cs

24 lines
687 B
C#

using System;
using System.Data;
using System.Collections;
using System.Collections.Generic;
using HcUtility.Core;
using Newtonsoft.Json;
namespace DSWeb.Areas.MvcShipping.Models.MsCustomReport
{
[JsonObject]
public class MsCustomReportModel : ModelObjectBase
{
public string GID { get; set; }
public string isCustom { get; set; }
public string RPTNAME { get; set; }
public string RPTNOTE { get; set; }
public string RPTCONTENT { get; set; }
public string RPTPROP { get; set; }
public string ISDEFAULT { get; set; }
public string REPORT { get; set; }
public string COMPANYID { get; set; }
}
}