18 lines
419 B
C#
18 lines
419 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace dccdc.Models
|
|||
|
|
{
|
|||
|
|
public class GWLXViewModel
|
|||
|
|
{
|
|||
|
|
public int id { get; set; }
|
|||
|
|
public String code { get; set; }
|
|||
|
|
public String jobs_state { get; set; }
|
|||
|
|
public String status { get; set; }
|
|||
|
|
public String creator { get; set; }
|
|||
|
|
public String create_time { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|