19 lines
457 B
C#
19 lines
457 B
C#
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; }
|
|
|
|
}
|
|
}
|