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.
|
|
|
|
using System;
|
|
|
|
|
using HcUtility.Core;
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
|
|
|
|
namespace DSWeb.Areas.CommMng.Models
|
|
|
|
|
{
|
|
|
|
|
[JsonObject]
|
|
|
|
|
public class OpPrintModel
|
|
|
|
|
{
|
|
|
|
|
public string type { get; set; }
|
|
|
|
|
public string sql1 { get; set; }
|
|
|
|
|
public string sql2 { get; set; }
|
|
|
|
|
public string sql3 { get; set; }
|
|
|
|
|
public string sql4 { get; set; }
|
|
|
|
|
public string sql5 { get; set; }
|
|
|
|
|
public string sql6 { get; set; }
|
|
|
|
|
public string billno { get; set; }
|
|
|
|
|
public string RpID { get; set; }
|
|
|
|
|
public string RptMode { get; set; }
|
|
|
|
|
public string bsno { get; set; }
|
|
|
|
|
public string ispl { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|