이슈 변경 사항을 추적하기 위한 서비스 구현.
- DB 추적 및 Excel 리포트 출력
This commit is contained in:
19
VTSFetcher/Repositories/Entities/IssueWithStatus.cs
Normal file
19
VTSFetcher/Repositories/Entities/IssueWithStatus.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
namespace VTSFetcher.Repositories.Entities;
|
||||
|
||||
public class IssueWithStatus
|
||||
{
|
||||
public string Key { get; set; }
|
||||
public string Summary { get; set; }
|
||||
public string? Parent { get; set; }
|
||||
public string Type { get; set; }
|
||||
public string CurrentStatus { get; set; }
|
||||
public string Assignee { get; set; }
|
||||
public string Manager { get; set; }
|
||||
public DateTimeOffset Due { get; set; }
|
||||
public DateTimeOffset Updated { get; set; }
|
||||
|
||||
// IssueStatus 정보
|
||||
public string? PreviousStatus { get; set; }
|
||||
public DateTimeOffset? Changed { get; set; }
|
||||
public int Duration { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user