tijian_tieying/web/dccdc.Models/charge_detailModel.cs
2025-02-20 12:14:39 +08:00

19 lines
456 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
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; }
}
}