調整
This commit is contained in:
@@ -694,8 +694,8 @@ namespace Model
|
||||
|
||||
public int num { get; set; }
|
||||
public int f_num { get; set; }
|
||||
public System.DateTime start_date { get; set; }
|
||||
public System.DateTime end_date { get; set; }
|
||||
public Nullable<System.DateTime> start_date { get; set; }
|
||||
public Nullable<System.DateTime> end_date { get; set; }
|
||||
public string receipt_title { get; set; }
|
||||
public string receipt_address { get; set; }
|
||||
|
||||
@@ -1539,6 +1539,85 @@ namespace Model
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
public partial class receipt_detail
|
||||
{
|
||||
public int num { get; set; }
|
||||
public Nullable<int> receipt_num { get; set; }
|
||||
public string title { get; set; }
|
||||
public Nullable<int> amt { get; set; }
|
||||
public string receipt_no { get; set; }
|
||||
public string caseofficer { get; set; }
|
||||
public string c_user { get; set; }
|
||||
public string c_date { get; set; }
|
||||
public string c_time { get; set; }
|
||||
public string u_user { get; set; }
|
||||
public string u_date { get; set; }
|
||||
public string u_time { get; set; }
|
||||
public string addr { get; set; }
|
||||
}
|
||||
}
|
||||
namespace Model
|
||||
{
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
public partial class receipt_master
|
||||
{
|
||||
public int num { get; set; }
|
||||
public string order_no { get; set; }
|
||||
public Nullable<int> total_amt { get; set; }
|
||||
public string receipt_date { get; set; }
|
||||
public Nullable<int> style_num { get; set; }
|
||||
public string c_user { get; set; }
|
||||
public string c_date { get; set; }
|
||||
public string c_time { get; set; }
|
||||
public string u_user { get; set; }
|
||||
public string u_date { get; set; }
|
||||
public string u_time { get; set; }
|
||||
public string source { get; set; }
|
||||
}
|
||||
}
|
||||
namespace Model
|
||||
{
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
public partial class receipt_style
|
||||
{
|
||||
public int num { get; set; }
|
||||
public string name { get; set; }
|
||||
public string c_user { get; set; }
|
||||
public string c_date { get; set; }
|
||||
public string c_time { get; set; }
|
||||
public string u_user { get; set; }
|
||||
public string u_date { get; set; }
|
||||
public string u_time { get; set; }
|
||||
}
|
||||
}
|
||||
namespace Model
|
||||
{
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
public partial class receipt_style_d
|
||||
{
|
||||
public int num { get; set; }
|
||||
public Nullable<int> style_num { get; set; }
|
||||
public string item_name { get; set; }
|
||||
public string item_value { get; set; }
|
||||
public string c_user { get; set; }
|
||||
public string c_date { get; set; }
|
||||
public string c_time { get; set; }
|
||||
public string u_user { get; set; }
|
||||
public string u_date { get; set; }
|
||||
public string u_time { get; set; }
|
||||
}
|
||||
}
|
||||
namespace Model
|
||||
{
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
public partial class Region
|
||||
{
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
|
||||
|
||||
Reference in New Issue
Block a user