調整
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
namespace Model.ViewModel
|
||||
{
|
||||
/// <summary>
|
||||
/// receipt 的摘要描述
|
||||
/// </summary>
|
||||
public class receipt_master
|
||||
{
|
||||
public receipt_master()
|
||||
{
|
||||
//
|
||||
// TODO: 在這裡新增建構函式邏輯
|
||||
//
|
||||
}
|
||||
|
||||
public int? num { get; set; }
|
||||
public string order_no { get; set; }
|
||||
public int? total_amt { get; set; }
|
||||
public int? style_num { get; set; }
|
||||
public string source { get; set; }
|
||||
public string receipt_date { get; set; }
|
||||
public List<receipt_detail> list { get;set ; }
|
||||
|
||||
}
|
||||
|
||||
public class receipt_detail
|
||||
{
|
||||
public receipt_detail()
|
||||
{
|
||||
}
|
||||
public int? num { get; set; }
|
||||
public int? receipt_num { get; set; }
|
||||
public string title { get; set; }
|
||||
public string receipt_no { get; set; }
|
||||
public int? amt { get; set; }
|
||||
public string caseofficer { get; set; }
|
||||
public string addr { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user