tijian_tieying/web/dccdc.Models/charge_project_detailModel.cs

19 lines
457 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 charge_project_detailModel
{
public int id { get; set; }
public int invoice_print_id { get; set; }
public string charge_project { get; set; }
public decimal unit_price { get; set; }
public decimal charge_num { get; set; }
public decimal charge_price { get; set; }
}
}