49 lines
1.8 KiB
C#
49 lines
1.8 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace dccdc.Models
|
|
{
|
|
public class invoice_printModel
|
|
{
|
|
public int id { get; set; }
|
|
public string invoice_num { get; set; }
|
|
public string is_print_price_count { get; set; }
|
|
public string company { get; set; }
|
|
public string payment_type { get; set; }
|
|
public string department { get; set; }
|
|
public string charge_person_name { get; set; }
|
|
public string description { get; set; }
|
|
public int person_count { get; set; }
|
|
public int match_person_count { get; set; }
|
|
public decimal invoice_price { get; set; }
|
|
public decimal actually_pay { get; set; }
|
|
public string invoice_date { get; set; }
|
|
public string status { get; set; }
|
|
public string exam_type { get; set; }
|
|
public string pay_company { get; set; }
|
|
public string pay_date { get; set; }
|
|
public string pay_person { get; set; }
|
|
public decimal match_price { get; set; }
|
|
public decimal no_match_price { get; set; }
|
|
public string invoice_type { get; set; }
|
|
public string money_type { get; set; }
|
|
public string regist_rant { get; set; }
|
|
public string dept_id { get; set; }
|
|
public string return_description { get; set; }
|
|
public decimal derate_money { get; set; }
|
|
public string print_type { get; set; }
|
|
public string accept_status { get; set; }
|
|
public string serial_number { get; set; }
|
|
public string upload_status { get; set; }
|
|
public string clear_num { get; set; }
|
|
public string moneyupper { get; set; }
|
|
public int chargeid { get; set; }
|
|
public int fpdid { get; set; }
|
|
public string invoice_num2 { get; set; }
|
|
public int iscancel { get; set; }
|
|
|
|
}
|
|
}
|