18 lines
439 B
C#
18 lines
439 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace dccdc.Models
|
|
{
|
|
public class infectionRedMoneyModel
|
|
{
|
|
public int id{ get; set; }
|
|
public int days { get; set; }
|
|
public decimal daymoney { get; set; }
|
|
public decimal testmoney { get; set; }
|
|
public decimal questionnairemoney { get; set; }
|
|
public string create_time { get; set; }
|
|
}
|
|
}
|