tijian_tieying/winform/cn.xinelu.MedicalCheckup.Client/Models/Charge_detailModel.cs
2025-02-20 12:01:17 +08:00

18 lines
437 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace dccdc.Models
{
public class Charge_detailModel
{
public int id { get; set; }
public int chargeid { get; set; }
public string projectid { get; set; }
public string projectname { get; set; }
public decimal money { get; set; }
public int count { get; set; }
public int pid { get; set; }
}
}