40 lines
1.1 KiB
C#
40 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Models.ModelItems
|
|
{
|
|
public class TBL_Project : ICloneable
|
|
{
|
|
public int ID { get; set; }
|
|
public int ProductTypeID { get; set; }
|
|
public string ProjectName { get; set; }
|
|
public string Description { get; set; }
|
|
public int UserID { get; set; }
|
|
public DateTime CreateTime { get; set; }
|
|
public DateTime UpdateTime { get; set; }
|
|
public DateTime EolDate { get; set; }
|
|
public string Remark { get; set; }
|
|
public string ImageName { get; set; }
|
|
|
|
public string PreviewImage { get; set; }
|
|
public float Price { get; set; }
|
|
|
|
public string Currency { get; set; }
|
|
public int IsValid{ get; set; }
|
|
public int SnType { get; set; }
|
|
|
|
|
|
public object Clone()
|
|
{
|
|
return this.Clone();
|
|
}
|
|
public TBL_UTS_Manage_User Clones()
|
|
{
|
|
return (TBL_UTS_Manage_User)this.Clone();
|
|
}
|
|
}
|
|
}
|