using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Web;
|
|
namespace WebAPI.Models
|
{
|
public class Pay_PeriodInfoSet
|
{
|
public long HItemID { get; set; }
|
public long HYear { get; set; }
|
public long HPeriod { get; set; }
|
public decimal HWorkTimes { get; set; }
|
public decimal HOverWorkTimes { get; set; }
|
public decimal HBasePay { get; set; }
|
|
|
|
public bool HStopflag { get; set; } //禁用标志
|
public string HRemark { get; set; } //备注
|
public string HUseFlag { get; set; } //使用标志
|
|
|
|
}
|
}
|