34 lines
533 B
C#
34 lines
533 B
C#
using BaseOUDAL;
|
|
|
|
namespace YLErp.Model
|
|
{
|
|
public class ApprovalReq : BaseSearchReq
|
|
{
|
|
public int type
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public bool? linkStatus
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string linkCode
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public DateTime optDateStart
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public DateTime optDateEnd
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
}
|