tijian_tieying/web/dccdc.Models/professional_charge_projectModel.cs

17 lines
376 B
C#
Raw Normal View History

2025-02-20 12:14:39 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace dccdc.Models
{
public class ProfessionalChargeProjectModel
{
public int id { get; set; }
public string physical_num { get; set; }
public string charge_project_name { get; set; }
public double charge_project_price { get; set; }
}
}