tijian_tieying/winform/cn.xinelu.MedicalCheckup.Client/Models/ChargeModel.cs

31 lines
996 B
C#
Raw Normal View History

2025-02-20 12:01:17 +08:00
using System;
using System.Collections.Generic;
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; }
}
}