48 lines
805 B
C#
48 lines
805 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Model.APIItem.SYHSE
|
|
{
|
|
public class DataPromiseItem
|
|
{
|
|
public string PromiseId
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string ProjectId
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public DateTime? PromiseDate
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string Promise
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string UnitId
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string CreateMan
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public DateTime? CreateDate
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
}
|