master
xiaochanghai 6 months ago
parent d2ae68c066
commit 10d2ad3e25
  1. 10
      Tiobon.Core.Api/Tiobon.Core.Model.xml
  2. 14
      Tiobon.Core.Model/Base/Ghrh/Ghrh_OfferApplyOrder.Dto.Base.cs
  3. 14
      Tiobon.Core.Model/Models/Ghrh/Ghrh_OfferApplyOrder.cs
  4. 3
      Tiobon.Core.Model/ViewModels/Extend/ResumeViewTab.cs
  5. 2
      Tiobon.Core.Services/Ghrh/Ghrh_OfferApplyOrderServices.cs
  6. 2
      Tiobon.Core.Services/Ghrh/Ghrh_ResumeServices.cs
  7. 25
      Tiobon.Core/Tiobon.Core.Model.xml

@ -8250,6 +8250,11 @@
厂区ID
</summary>
</member>
<member name="P:Tiobon.Core.Model.Models.Ghrh_OfferApplyOrderBase.StaffType1">
<summary>
员工类别1
</summary>
</member>
<member name="T:Tiobon.Core.Model.Models.Ghrh_OfferApplyOrderSalaryBase">
<summary>
录用审批单薪资 (Dto.Base)
@ -21901,6 +21906,11 @@
厂区ID
</summary>
</member>
<member name="P:Tiobon.Core.Model.Models.Ghrh_OfferApplyOrder.StaffType1">
<summary>
员工类别1
</summary>
</member>
<member name="T:Tiobon.Core.Model.Models.Ghrh_OfferApplyOrderSalary">
<summary>
录用审批单薪资 (Model)

@ -6,7 +6,7 @@
*
* Ver
*
*V0.01 2024/12/24 14:54:00 SimonHsiao
*V0.01 2024/12/24 15:07:47 SimonHsiao
*
* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved.
*
@ -73,12 +73,6 @@ public class Ghrh_OfferApplyOrderBase
[Display(Name = "StaffType"), Description("员工类别"), MaxLength(32, ErrorMessage = "员工类别 不能超过 32 个字符")]
public string StaffType { get; set; }
/// <summary>
/// 员工类别1
/// </summary>
[Display(Name = "StaffType1"), Description("员工类别1"), MaxLength(32, ErrorMessage = "员工类别1 不能超过 32 个字符")]
public string StaffType1 { get; set; }
/// <summary>
/// 职等
/// </summary>
@ -309,4 +303,10 @@ public class Ghrh_OfferApplyOrderBase
/// 厂区ID
/// </summary>
public int? ZoneId { get; set; }
/// <summary>
/// 员工类别1
/// </summary>
[Display(Name = "StaffType1"), Description("员工类别1"), MaxLength(32, ErrorMessage = "员工类别1 不能超过 32 个字符")]
public string StaffType1 { get; set; }
}

@ -6,7 +6,7 @@
*
* Ver
*
*V0.01 2024/12/24 14:54:00 SimonHsiao
*V0.01 2024/12/24 15:07:47 SimonHsiao
*
* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved.
*
@ -74,12 +74,6 @@ public class Ghrh_OfferApplyOrder : BasePoco
[Display(Name = "StaffType"), Description("员工类别"), MaxLength(32, ErrorMessage = "员工类别 不能超过 32 个字符")]
public string StaffType { get; set; }
/// <summary>
/// 员工类别1
/// </summary>
[Display(Name = "StaffType1"), Description("员工类别1"), MaxLength(32, ErrorMessage = "员工类别1 不能超过 32 个字符")]
public string StaffType1 { get; set; }
/// <summary>
/// 职等
/// </summary>
@ -310,4 +304,10 @@ public class Ghrh_OfferApplyOrder : BasePoco
/// 厂区ID
/// </summary>
public int? ZoneId { get; set; }
/// <summary>
/// 员工类别1
/// </summary>
[Display(Name = "StaffType1"), Description("员工类别1"), MaxLength(32, ErrorMessage = "员工类别1 不能超过 32 个字符")]
public string StaffType1 { get; set; }
}

@ -231,7 +231,7 @@ public class ResumeRescheduleInterviewForm : ResumeRescheduleInterviewForm1
/// <summary>
/// 时间段,2024/10/12 10:00~2024/10/12 11:00
/// </summary>
public string Time { get; set; }
public override string Time { get; set; }
}
public class ResumeRescheduleInterviewForm1
@ -240,6 +240,7 @@ public class ResumeRescheduleInterviewForm1
/// 面试官列表
/// </summary>
public List<ResumeRecommendFormStaff> InterviewStaffs { get; set; }
public virtual string Time { get; set; }
}
public class ResumeAssessInterviewForm

@ -329,6 +329,8 @@ public class Ghrh_OfferApplyOrderServices : BaseServices<Ghrh_OfferApplyOrder, G
obj.ProbationAfterSalary = applyOrder.ProbationAfterSalary;
obj.JobPeriodMasterIdId = applyOrder.PeriodMasterId;
obj.JobId = applyOrder.JobId;
obj.ZoneId = applyOrder.ZoneId;
obj.StaffType1 = applyOrder.StaffType1;
obj.Items = await Db.Queryable<Ghrh_OfferApplyOrderSalary>().Where(x => x.OrderId == applyOrder.Id).ToListAsync();
}

@ -4045,6 +4045,8 @@ WHERE A.IsEnable = 1 AND C.IsEnable = 1
dict.Add("PeriodMasterId", applyOrder.PeriodMasterId);
dict.Add("LegalCompanyID", applyOrder.CompanyId);
dict.Add("Reverse8", applyOrder.ProbationMonths);
dict.Add("ZoneID", applyOrder.ZoneId);
dict.Add("StaffType1", applyOrder.StaffType1);
//dict.Add("Reverse8", applyOrder.ProbationMonths);
}

@ -8245,6 +8245,16 @@
计薪类别ID
</summary>
</member>
<member name="P:Tiobon.Core.Model.Models.Ghrh_OfferApplyOrderBase.ZoneId">
<summary>
厂区ID
</summary>
</member>
<member name="P:Tiobon.Core.Model.Models.Ghrh_OfferApplyOrderBase.StaffType1">
<summary>
员工类别1
</summary>
</member>
<member name="T:Tiobon.Core.Model.Models.Ghrh_OfferApplyOrderSalaryBase">
<summary>
录用审批单薪资 (Dto.Base)
@ -21891,6 +21901,16 @@
计薪类别ID
</summary>
</member>
<member name="P:Tiobon.Core.Model.Models.Ghrh_OfferApplyOrder.ZoneId">
<summary>
厂区ID
</summary>
</member>
<member name="P:Tiobon.Core.Model.Models.Ghrh_OfferApplyOrder.StaffType1">
<summary>
员工类别1
</summary>
</member>
<member name="T:Tiobon.Core.Model.Models.Ghrh_OfferApplyOrderSalary">
<summary>
录用审批单薪资 (Model)
@ -28027,6 +28047,11 @@
审批状态
</summary>
</member>
<member name="P:Tiobon.Core.Model.Models.Ghrh_OfferApplyOrderDto.ZoneName">
<summary>
厂区
</summary>
</member>
<member name="T:Tiobon.Core.Model.Models.Ghrh_OfferApplyOrderSalaryDto">
<summary>
录用审批单薪资(Dto.View1)

Loading…
Cancel
Save