18 lines
482 B
C#
18 lines
482 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace dccdc.Models
|
|||
|
|
{
|
|||
|
|
public class MedicalSchemeChargeMaintainModel
|
|||
|
|
{
|
|||
|
|
public int id { get; set; }
|
|||
|
|
public string medical_scheme { get; set; }
|
|||
|
|
public int medical_scheme_maintain_id { get; set; }
|
|||
|
|
public string charge_project_name { get; set; }
|
|||
|
|
public int charge_project_maintain_id { get; set; }
|
|||
|
|
public string fee { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|