34 lines
704 B
C#
34 lines
704 B
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_idp_planEntity : BaseEntity2<int>
|
|
{
|
|
|
|
|
|
public int? create_evaluation_detail_id { get; set; }
|
|
|
|
[MaxLength(1000)]
|
|
public string develop { get; set; }
|
|
|
|
[MaxLength(1000)]
|
|
public string development_method { get; set; }
|
|
|
|
public DateTime? start_date { get; set; }
|
|
|
|
public DateTime? end_date { get; set; }
|
|
|
|
|
|
}
|
|
}
|