47 lines
1.1 KiB
C#
47 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using TTSW.EF;
|
|
using TTSW.Utils;
|
|
using TTSW.Constant;
|
|
using TTSW.Common;
|
|
using System.IO;
|
|
|
|
namespace TodoAPI2.Models
|
|
{
|
|
public class eva_adjust_postponementEntity : BaseEntity2<int>
|
|
{
|
|
|
|
|
|
public int? fiscal_year { get; set; }
|
|
|
|
public DateTime? theDate { get; set; }
|
|
|
|
public int? theRound { get; set; }
|
|
|
|
[ForeignKey("create_evaluation_id")]
|
|
public eva_create_evaluationEntity eva_create_evaluation { get; set; }
|
|
public int? create_evaluation_id { get; set; }
|
|
|
|
public decimal? limit { get; set; }
|
|
|
|
public decimal? limit_frame { get; set; }
|
|
|
|
public decimal? limit_quota { get; set; }
|
|
|
|
public decimal? limit_frame_quota { get; set; }
|
|
|
|
public decimal? percentage { get; set; }
|
|
|
|
[MaxLength(100)]
|
|
public string command_no { get; set; }
|
|
|
|
public int? managed_by { get; set; }
|
|
|
|
|
|
}
|
|
}
|