33 lines
705 B
C#
33 lines
705 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;
|
|
|
|
namespace TodoAPI2.Models
|
|
{
|
|
public class eva_idp_planInputModel
|
|
{
|
|
|
|
public int? id { get; set; }
|
|
|
|
public int? create_evaluation_detail_id { get; set; }
|
|
|
|
public string develop { get; set; }
|
|
|
|
public string development_method { get; set; }
|
|
|
|
public DateTime? start_date { get; set; }
|
|
|
|
public DateTime? end_date { get; set; }
|
|
|
|
public string active_mode { get; set; }
|
|
}
|
|
}
|
|
|