using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Application
{
///
/// 添加员工职责
///
public class AddEmployeeDutyInput
{
///
/// 客户标识
///
public long CorpID { get; set; }
///
/// 目标类型
///
public string TargetType { get; set; }
///
/// 目标标识
///
public long TargetID { get; set; }
///
/// 员工标识
///
public long EmployeeID { get; set; }
///
/// 职责
///
public string Duty { get; set; }
///
/// 职责周期
///
public string DutyCycle { get; set; }
///
/// 起始日期
///
public DateTime? StartDay { get; set; }
///
/// 截至日期
///
public DateTime? EndDay { get; set; }
///
/// 排序码
///
public int SortCode { get; set; }
///
/// 说明
///
public string Description { get; set; }
}
}