18 lines
448 B
C#
18 lines
448 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace dccdc.Models.DTO
|
|
{
|
|
public class LiShi
|
|
{
|
|
public string physical_num { get; set; }
|
|
public string project_name{ get; set; }
|
|
public string reference_value{ get; set; }
|
|
public string project_result{ get; set; }
|
|
public string qualified{ get; set; }
|
|
public string register_date{ get; set; }
|
|
}
|
|
}
|