33 lines
1.1 KiB
C#
33 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace dccdc.Models
|
|
{
|
|
public class chargeModel
|
|
{
|
|
public int id { get; set; }
|
|
public string type { get; set; }
|
|
public string type_id { get; set; }
|
|
public string register_type { get; set; }
|
|
public string register_num { get; set; }
|
|
public string person_type { get; set; }
|
|
public string person { get; set; }
|
|
public int personcount { get; set; }
|
|
public string company { get; set; }
|
|
public string department { get; set; }
|
|
public string method { get; set; }
|
|
public string status { get; set; }
|
|
public string isprint { get; set; }
|
|
public decimal money { get; set; }
|
|
public DateTime? moneydate { get; set; }
|
|
public string moneyperson { get; set; }
|
|
public string createperson { get; set; }
|
|
public DateTime createdate { get; set; }
|
|
public string zfid { get; set; }
|
|
public string balance { get; set; }
|
|
public DateTime balancedate { get; set; }
|
|
}
|
|
}
|