37 lines
1.2 KiB
C#
37 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace Personnel.WebSite.Shanxi.Models
|
|
{
|
|
//计算工作日(排除周末、节假日得到应考勤日)
|
|
public class HolidayDate
|
|
{
|
|
public int code { get; set; }
|
|
public string msg { get; set; }
|
|
public List<DateList> newslist { get; set; }
|
|
}
|
|
|
|
public class DateList
|
|
{
|
|
public string date { get; set; }
|
|
public int? daycode { get; set; }
|
|
public int? weekday { get; set; }
|
|
public string cnweekday { get; set; }
|
|
public string lunaryear { get; set; }
|
|
public string lunarmonth { get; set; }
|
|
public string lunarday { get; set; }
|
|
public string info { get; set; }
|
|
public int? start { get; set; }
|
|
public int? end { get; set; }
|
|
public string holiday { get; set; }
|
|
public string name { get; set; }
|
|
public string enname { get; set; }
|
|
public int? isnotwork { get; set; }
|
|
public string[] vacation { get; set; }
|
|
public string[] remark { get; set; }
|
|
public string tip { get; set; }
|
|
public string rest { get; set; }
|
|
}
|
|
} |