53 lines
875 B
C#
53 lines
875 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Model.APIItem.SYHSE
|
|
{
|
|
public class DataLicenceItem
|
|
{
|
|
public string Id
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string ProjectId
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string UnitId
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public DateTime? ReportDate
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string Type
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public int? Amount
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string CreateMan
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public DateTime? CreateDate
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
}
|