33 lines
849 B
C#
33 lines
849 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_planViewModel : BaseViewModel2<int>
|
|
{
|
|
|
|
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 string txt_start_date { get { return MyHelper.GetDateStringForReport(this.start_date); } }
|
|
|
|
public DateTime? end_date { get; set; }
|
|
|
|
public string txt_end_date { get { return MyHelper.GetDateStringForReport(this.end_date); } }
|
|
|
|
|
|
}
|
|
} |