29 lines
814 B
C#
29 lines
814 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace dccdc.Models
|
|
{
|
|
public class InfectionRedModel
|
|
{
|
|
public int id { get; set; }
|
|
public string openid { get; set; }
|
|
public int type { get; set; }
|
|
public decimal sum { get; set; }
|
|
public int state { get; set; }
|
|
public string create_time { get; set; }
|
|
|
|
public string redType { get; set; }
|
|
public string redState { get; set; }
|
|
public string nickname { get; set; }
|
|
public string name { get; set; }
|
|
public string ident { get; set; }
|
|
|
|
public string mch_billno { get; set; }
|
|
public string phone { get; set; }
|
|
public string receive_date { get; set; }
|
|
public int status { get; set; }
|
|
}
|
|
}
|