20 lines
482 B
C#
20 lines
482 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace dccdc.Models
|
|
{
|
|
public class MedicalSchemeMaintainModel
|
|
{
|
|
public int id { get; set; }
|
|
public string code { get; set; }
|
|
public string medical_scheme { get; set; }
|
|
public string status { get; set; }
|
|
public string creator { get; set; }
|
|
public string create_time { get; set; }
|
|
public string isCharge { get; set; }
|
|
|
|
}
|
|
}
|