2020-12-28 14:55:48 +08:00
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BaseInfoClient.Response.Project
|
|
|
|
|
|
{
|
|
|
|
|
|
public class ProjectItem
|
|
|
|
|
|
{
|
|
|
|
|
|
[JsonProperty("projectCode")] public int ProjectCode { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[JsonProperty("name")] public string Name { get; set; } = "";
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// С<><D0A1><EFBFBD><EFBFBD>ַ
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[JsonProperty("location")] public string Location { get; set; } = "";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[JsonProperty("projectType")] public int projectType { get; set; }
|
|
|
|
|
|
}
|
2020-10-07 20:25:03 +08:00
|
|
|
|
}
|