51 lines
1.3 KiB
C#
51 lines
1.3 KiB
C#
namespace CompanyManagment.App.Contracts.InstitutionPlan;
|
|
|
|
public class CreateServiceAmountDto
|
|
{
|
|
/// <summary>
|
|
/// آی دی
|
|
/// </summary>
|
|
public long Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// قرارداد و تصفیه
|
|
/// درصد از مزد روزانه
|
|
/// string
|
|
/// </summary>
|
|
public string ContractAndCheckoutPercentStr { get; set; }
|
|
|
|
/// <summary>
|
|
/// بیمه
|
|
/// درصد از مزد روزانه
|
|
/// string
|
|
/// </summary>
|
|
public string InsurancePercentStr { get; set; }
|
|
|
|
/// <summary>
|
|
/// حضورغباب
|
|
/// درصد از مزد روزانه
|
|
/// string
|
|
/// </summary>
|
|
public string RollCallPercentStr { get; set; }
|
|
|
|
/// <summary>
|
|
/// فیش غیر رسمی
|
|
/// درصد از مزد روزانه
|
|
/// string
|
|
/// </summary>
|
|
public string CustomizeCheckoutPercentStr { get; set; }
|
|
|
|
/// <summary>
|
|
/// خدمات حضوری قرداد و تصفیه
|
|
/// درصد از مزد روزانه
|
|
/// string
|
|
/// </summary>
|
|
public string ContractAndCheckoutInPersonPercentStr { get; set; }
|
|
|
|
/// <summary>
|
|
/// خدمات حضوری بیمه
|
|
/// درصد از مزد روزانه
|
|
/// string
|
|
/// </summary>
|
|
public string InsuranceInPersonPercentStr { get; set; }
|
|
} |