41 lines
1.1 KiB
C#
41 lines
1.1 KiB
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace HRM.BO
|
|||
|
{
|
|||
|
public class PMSObjectiveProgressAttachment : BasicBaseObject
|
|||
|
{
|
|||
|
#region Constructor
|
|||
|
public PMSObjectiveProgressAttachment()
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
#region Properties
|
|||
|
public int PMSObjectiveProgressID { get; set; }
|
|||
|
public string FileName { get; set; }
|
|||
|
public DateTime UploadTime { get; set; }
|
|||
|
public object FileData { get; set; }
|
|||
|
public int FileType { get; set; }
|
|||
|
#endregion
|
|||
|
|
|||
|
}
|
|||
|
#region IPMSObjectiveProgress Service
|
|||
|
|
|||
|
public interface IPMSObjectiveProgressAttachmentService
|
|||
|
{
|
|||
|
void Save(PMSObjectiveProgressAttachment item);
|
|||
|
List<PMSObjectiveProgressAttachment> Get();
|
|||
|
PMSObjectiveProgressAttachment Get(int id);
|
|||
|
PMSObjectiveProgressAttachment GetbyPMSObjectiveProgressID(int pmsObjectiveProgressID);
|
|||
|
List<PMSObjectiveProgressAttachment> GetByObjectGetByPMSObjectiveProgressIDiveID(int pmsObjectiveProgressID);
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
}
|