22 lines
662 B
C#
22 lines
662 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace dccdc.Models
|
|||
|
|
{
|
|||
|
|
public class SummaryreportStandardMaintainModel
|
|||
|
|
{
|
|||
|
|
public int id { get; set; }
|
|||
|
|
public string standard_number { get; set; }
|
|||
|
|
public string standard_name { get; set; }
|
|||
|
|
public string replace_standard_number { get; set; }
|
|||
|
|
public string approval_date { get; set; }
|
|||
|
|
public string material_date { get; set; }
|
|||
|
|
public string status { get; set; }
|
|||
|
|
public string pinyin_code { get; set; }
|
|||
|
|
public string creator { get; set; }
|
|||
|
|
public string create_time { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|