| ID | 고객 | 계약번호 | 서비스 유형 | 월 수수료 | 계약기간 | 상태 | 작업 |
|---|---|---|---|---|---|---|---|
| @item.Id | @clientMap.GetValueOrDefault(item.ClientId) | @item.ContractNumber | @item.ServiceType | @(item.MonthlyFee?.ToString("C") ?? string.Empty) | @item.StartDate.ToString("yyyy-MM-dd") @if (item.EndDate.HasValue) { ~@item.EndDate.Value.ToString("yyyy-MM-dd") } | @(isActive ? "활성" : "만료") |