录用审批单

master
xiaochanghai 7 months ago
parent cf62cf8307
commit ba2adf9ffb
  1. 8099
      Model/Tiobon.Web.pdm
  2. 14
      Tiobon.Core.Api/Controllers/Ghrh/Ghrh_OfferApplyOrderController.cs
  3. 14
      Tiobon.Core.Api/Controllers/Ghrh/Ghrh_OfferApplyOrderSalaryController.cs
  4. 1048
      Tiobon.Core.Api/Tiobon.Core.Model.xml
  5. 10
      Tiobon.Core.Api/Tiobon.Core.xml
  6. 11
      Tiobon.Core.IServices/Ghrh/IGhrh_OfferApplyOrderSalaryServices.cs
  7. 11
      Tiobon.Core.IServices/Ghrh/IGhrh_OfferApplyOrderServices.cs
  8. 291
      Tiobon.Core.Model/Base/Ghrh/Ghrh_OfferApplyOrder.Dto.Base.cs
  9. 127
      Tiobon.Core.Model/Base/Ghrh/Ghrh_OfferApplyOrderSalary.Dto.Base.cs
  10. 26
      Tiobon.Core.Model/Edit/Ghrh/Ghrh_OfferApplyOrder.Dto.EditInput.cs
  11. 26
      Tiobon.Core.Model/Edit/Ghrh/Ghrh_OfferApplyOrderSalary.Dto.EditInput.cs
  12. 26
      Tiobon.Core.Model/Insert/Ghrh/Ghrh_OfferApplyOrder.Dto.InsertInput.cs
  13. 26
      Tiobon.Core.Model/Insert/Ghrh/Ghrh_OfferApplyOrderSalary.Dto.InsertInput.cs
  14. 292
      Tiobon.Core.Model/Models/Ghrh/Ghrh_OfferApplyOrder.cs
  15. 128
      Tiobon.Core.Model/Models/Ghrh/Ghrh_OfferApplyOrderSalary.cs
  16. 34
      Tiobon.Core.Model/View/Ghrh/Ghrh_OfferApplyOrder.Dto.View.cs
  17. 34
      Tiobon.Core.Model/View/Ghrh/Ghrh_OfferApplyOrderSalary.Dto.View.cs
  18. 15
      Tiobon.Core.Services/Ghrh/Ghrh_OfferApplyOrderSalaryServices.cs
  19. 15
      Tiobon.Core.Services/Ghrh/Ghrh_OfferApplyOrderServices.cs

File diff suppressed because it is too large Load Diff

@ -0,0 +1,14 @@
namespace Tiobon.Core.Api.Controllers;
/// <summary>
/// 录用审批单(Controller)
/// </summary>
[Route("api/[controller]")]
[ApiController, GlobalActionFilter]
[Authorize(Permissions.Name), ApiExplorerSettings(GroupName = Grouping.GroupName_Ghrh)]
public class Ghrh_OfferApplyOrderController : BaseController<IGhrh_OfferApplyOrderServices, Ghrh_OfferApplyOrder, Ghrh_OfferApplyOrderDto, InsertGhrh_OfferApplyOrderInput, EditGhrh_OfferApplyOrderInput>
{
public Ghrh_OfferApplyOrderController(IGhrh_OfferApplyOrderServices service) : base(service)
{
}
}

@ -0,0 +1,14 @@
namespace Tiobon.Core.Api.Controllers;
/// <summary>
/// 录用审批单薪资(Controller)
/// </summary>
[Route("api/[controller]")]
[ApiController, GlobalActionFilter]
[Authorize(Permissions.Name), ApiExplorerSettings(GroupName = Grouping.GroupName_Ghrh)]
public class Ghrh_OfferApplyOrderSalaryController : BaseController<IGhrh_OfferApplyOrderSalaryServices, Ghrh_OfferApplyOrderSalary, Ghrh_OfferApplyOrderSalaryDto, InsertGhrh_OfferApplyOrderSalaryInput, EditGhrh_OfferApplyOrderSalaryInput>
{
public Ghrh_OfferApplyOrderSalaryController(IGhrh_OfferApplyOrderSalaryServices service) : base(service)
{
}
}

File diff suppressed because it is too large Load Diff

@ -1280,6 +1280,16 @@
面试记录(Controller)
</summary>
</member>
<member name="T:Tiobon.Core.Api.Controllers.Ghrh_OfferApplyOrderController">
<summary>
录用审批单(Controller)
</summary>
</member>
<member name="T:Tiobon.Core.Api.Controllers.Ghrh_OfferApplyOrderSalaryController">
<summary>
录用审批单薪资(Controller)
</summary>
</member>
<member name="T:Tiobon.Core.Api.Controllers.Ghrh_ResumeController">
<summary>
个人简历(Controller)

@ -0,0 +1,11 @@
using Tiobon.Core.IServices.BASE;
using Tiobon.Core.Model.Models;
namespace Tiobon.Core.IServices;
/// <summary>
/// 录用审批单薪资(自定义服务接口)
/// </summary>
public interface IGhrh_OfferApplyOrderSalaryServices : IBaseServices<Ghrh_OfferApplyOrderSalary, Ghrh_OfferApplyOrderSalaryDto, InsertGhrh_OfferApplyOrderSalaryInput, EditGhrh_OfferApplyOrderSalaryInput>
{
}

@ -0,0 +1,11 @@
using Tiobon.Core.IServices.BASE;
using Tiobon.Core.Model.Models;
namespace Tiobon.Core.IServices;
/// <summary>
/// 录用审批单(自定义服务接口)
/// </summary>
public interface IGhrh_OfferApplyOrderServices : IBaseServices<Ghrh_OfferApplyOrder, Ghrh_OfferApplyOrderDto, InsertGhrh_OfferApplyOrderInput, EditGhrh_OfferApplyOrderInput>
{
}

@ -0,0 +1,291 @@
/* ,
* Ghrh_OfferApplyOrder.cs
*
* N / A
* Ghrh_OfferApplyOrder
*
* Ver
*
*V0.01 2024/12/5 11:57:37 SimonHsiao
*
* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved.
*
*  
* SimonHsiao
*
*/
namespace Tiobon.Core.Model.Models;
/// <summary>
/// 录用审批单 (Dto.Base)
/// </summary>
public class Ghrh_OfferApplyOrderBase
{
/// <summary>
/// 简历ID
/// </summary>
public long? ResumeId { get; set; }
/// <summary>
/// 订单号
/// </summary>
[Display(Name = "OrderNo"), Description("订单号"), MaxLength(32, ErrorMessage = "订单号 不能超过 32 个字符")]
public string OrderNo { get; set; }
/// <summary>
/// 录用部门
/// </summary>
public int? DeptId { get; set; }
/// <summary>
/// 录用岗位
/// </summary>
public int? TitleId { get; set; }
/// <summary>
/// 招聘渠道
/// </summary>
[Display(Name = "Channel"), Description("招聘渠道"), MaxLength(32, ErrorMessage = "招聘渠道 不能超过 32 个字符")]
public string Channel { get; set; }
/// <summary>
/// 候选人姓名
/// </summary>
[Display(Name = "StaffName"), Description("候选人姓名"), MaxLength(64, ErrorMessage = "候选人姓名 不能超过 64 个字符")]
public string StaffName { get; set; }
/// <summary>
/// 身份证号码
/// </summary>
[Display(Name = "IdCardNo"), Description("身份证号码"), MaxLength(32, ErrorMessage = "身份证号码 不能超过 32 个字符")]
public string IdCardNo { get; set; }
/// <summary>
/// 预计入职日期
/// </summary>
public DateTime? InDate { get; set; }
/// <summary>
/// 员工类别
/// </summary>
[Display(Name = "StaffType"), Description("员工类别"), MaxLength(32, ErrorMessage = "员工类别 不能超过 32 个字符")]
public string StaffType { get; set; }
/// <summary>
/// 职等
/// </summary>
public int? GradeId { get; set; }
/// <summary>
/// 职称
/// </summary>
public int? JobId { get; set; }
/// <summary>
/// 试用期月数
/// </summary>
public int? ProbationMonths { get; set; }
/// <summary>
/// 汇报对象
/// </summary>
public int? ReportId { get; set; }
/// <summary>
/// 岗位职责
/// </summary>
[Display(Name = "JobResponsibility"), Description("岗位职责"), MaxLength(256, ErrorMessage = "岗位职责 不能超过 256 个字符")]
public string JobResponsibility { get; set; }
/// <summary>
/// 工作地点
/// </summary>
[Display(Name = "WorkAddress"), Description("工作地点"), MaxLength(128, ErrorMessage = "工作地点 不能超过 128 个字符")]
public string WorkAddress { get; set; }
/// <summary>
/// 试用期薪资
/// </summary>
[Display(Name = "ProbationSalary"), Description("试用期薪资"), Column(TypeName = "decimal(20,2)")]
public decimal? ProbationSalary { get; set; }
/// <summary>
/// 试用期满薪资
/// </summary>
[Display(Name = "ProbationAfterSalary"), Description("试用期满薪资"), Column(TypeName = "decimal(20,2)")]
public decimal? ProbationAfterSalary { get; set; }
/// <summary>
/// 发起时间
/// </summary>
public DateTime? ApplyTime { get; set; }
/// <summary>
/// 发起人ID
/// </summary>
public int? ApplicantId { get; set; }
/// <summary>
/// WorkID
/// </summary>
public int? WorkID { get; set; }
/// <summary>
/// WorkNo
/// </summary>
[Display(Name = "WorkNo"), Description("WorkNo"), MaxLength(100, ErrorMessage = "WorkNo 不能超过 100 个字符")]
public string WorkNo { get; set; }
/// <summary>
/// ToDoType
/// </summary>
[Display(Name = "ToDoType"), Description("ToDoType"), MaxLength(100, ErrorMessage = "ToDoType 不能超过 100 个字符")]
public string ToDoType { get; set; }
/// <summary>
/// BatchSID
/// </summary>
[Display(Name = "BatchSID"), Description("BatchSID"), MaxLength(100, ErrorMessage = "BatchSID 不能超过 100 个字符")]
public string BatchSID { get; set; }
/// <summary>
/// WorkState
/// </summary>
public int? WorkState { get; set; }
/// <summary>
/// ShiftID
/// </summary>
public int? ShiftID { get; set; }
/// <summary>
/// ConfirmUserID
/// </summary>
public int? ConfirmUserID { get; set; }
/// <summary>
/// ConfirmTime
/// </summary>
public DateTime? ConfirmTime { get; set; }
/// <summary>
/// ConfirmComment
/// </summary>
[Display(Name = "ConfirmComment"), Description("ConfirmComment"), MaxLength(2000, ErrorMessage = "ConfirmComment 不能超过 2000 个字符")]
public string ConfirmComment { get; set; }
/// <summary>
/// 同意人
/// </summary>
public long? AgreeUserId { get; set; }
/// <summary>
/// 同意时间
/// </summary>
public DateTime? AgreeTime { get; set; }
/// <summary>
/// 同意理由
/// </summary>
[Display(Name = "AgreeReason"), Description("同意理由"), MaxLength(2000, ErrorMessage = "同意理由 不能超过 2000 个字符")]
public string AgreeReason { get; set; }
/// <summary>
/// 拒绝人
/// </summary>
public long? RefuseUserId { get; set; }
/// <summary>
/// 拒绝时间
/// </summary>
public DateTime? RefuseTime { get; set; }
/// <summary>
/// 拒绝理由
/// </summary>
[Display(Name = "RefuseReason"), Description("拒绝理由"), MaxLength(2000, ErrorMessage = "拒绝理由 不能超过 2000 个字符")]
public string RefuseReason { get; set; }
/// <summary>
/// 备注
/// </summary>
[Display(Name = "RemarkSz"), Description("备注"), MaxLength(2000, ErrorMessage = "备注 不能超过 2000 个字符")]
public string RemarkSz { get; set; }
/// <summary>
/// 默认标志
/// </summary>
public int? IsDefault { get; set; }
/// <summary>
/// 预留字段1
/// </summary>
[Display(Name = "Reverse1"), Description("预留字段1"), MaxLength(1000, ErrorMessage = "预留字段1 不能超过 1000 个字符")]
public string Reverse1 { get; set; }
/// <summary>
/// 预留字段2
/// </summary>
[Display(Name = "Reverse2"), Description("预留字段2"), MaxLength(1000, ErrorMessage = "预留字段2 不能超过 1000 个字符")]
public string Reverse2 { get; set; }
/// <summary>
/// 预留字段3
/// </summary>
[Display(Name = "Reverse3"), Description("预留字段3"), MaxLength(1000, ErrorMessage = "预留字段3 不能超过 1000 个字符")]
public string Reverse3 { get; set; }
/// <summary>
/// 预留字段4
/// </summary>
[Display(Name = "Reverse4"), Description("预留字段4"), MaxLength(1000, ErrorMessage = "预留字段4 不能超过 1000 个字符")]
public string Reverse4 { get; set; }
/// <summary>
/// 预留字段5
/// </summary>
[Display(Name = "Reverse5"), Description("预留字段5"), MaxLength(1000, ErrorMessage = "预留字段5 不能超过 1000 个字符")]
public string Reverse5 { get; set; }
/// <summary>
/// 预留字段6
/// </summary>
[Display(Name = "Reverse6"), Description("预留字段6"), MaxLength(1000, ErrorMessage = "预留字段6 不能超过 1000 个字符")]
public string Reverse6 { get; set; }
/// <summary>
/// 预留字段7
/// </summary>
[Display(Name = "Reverse7"), Description("预留字段7"), MaxLength(1000, ErrorMessage = "预留字段7 不能超过 1000 个字符")]
public string Reverse7 { get; set; }
/// <summary>
/// 预留字段8
/// </summary>
[Display(Name = "Reverse8"), Description("预留字段8"), MaxLength(1000, ErrorMessage = "预留字段8 不能超过 1000 个字符")]
public string Reverse8 { get; set; }
/// <summary>
/// 预留字段9
/// </summary>
[Display(Name = "Reverse9"), Description("预留字段9"), MaxLength(1000, ErrorMessage = "预留字段9 不能超过 1000 个字符")]
public string Reverse9 { get; set; }
/// <summary>
/// 预留字段10
/// </summary>
[Display(Name = "Reverse10"), Description("预留字段10"), MaxLength(1000, ErrorMessage = "预留字段10 不能超过 1000 个字符")]
public string Reverse10 { get; set; }
/// <summary>
/// 预留字段11
/// </summary>
public int? ReverseI1 { get; set; }
/// <summary>
/// 预留字段12
/// </summary>
public int? ReverseI2 { get; set; }
}

@ -0,0 +1,127 @@
/* ,
* Ghrh_OfferApplyOrderSalary.cs
*
* N / A
* Ghrh_OfferApplyOrderSalary
*
* Ver
*
*V0.01 2024/12/5 11:57:15 SimonHsiao
*
* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved.
*
*  
* SimonHsiao
*
*/
namespace Tiobon.Core.Model.Models;
/// <summary>
/// 录用审批单薪资 (Dto.Base)
/// </summary>
public class Ghrh_OfferApplyOrderSalaryBase
{
/// <summary>
/// 面试评估ID
/// </summary>
public long? OrderId { get; set; }
/// <summary>
/// 项目
/// </summary>
public int? SalaryItemId { get; set; }
/// <summary>
/// 金额
/// </summary>
[Display(Name = "Amount"), Description("金额"), Column(TypeName = "decimal(20,2)")]
public decimal? Amount { get; set; }
/// <summary>
/// 币别
/// </summary>
public int? CurrencyId { get; set; }
/// <summary>
/// 备注
/// </summary>
[Display(Name = "RemarkSz"), Description("备注"), MaxLength(2000, ErrorMessage = "备注 不能超过 2000 个字符")]
public string RemarkSz { get; set; }
/// <summary>
/// 默认标志
/// </summary>
public int? IsDefault { get; set; }
/// <summary>
/// 预留字段1
/// </summary>
[Display(Name = "Reverse1"), Description("预留字段1"), MaxLength(1000, ErrorMessage = "预留字段1 不能超过 1000 个字符")]
public string Reverse1 { get; set; }
/// <summary>
/// 预留字段2
/// </summary>
[Display(Name = "Reverse2"), Description("预留字段2"), MaxLength(1000, ErrorMessage = "预留字段2 不能超过 1000 个字符")]
public string Reverse2 { get; set; }
/// <summary>
/// 预留字段3
/// </summary>
[Display(Name = "Reverse3"), Description("预留字段3"), MaxLength(1000, ErrorMessage = "预留字段3 不能超过 1000 个字符")]
public string Reverse3 { get; set; }
/// <summary>
/// 预留字段4
/// </summary>
[Display(Name = "Reverse4"), Description("预留字段4"), MaxLength(1000, ErrorMessage = "预留字段4 不能超过 1000 个字符")]
public string Reverse4 { get; set; }
/// <summary>
/// 预留字段5
/// </summary>
[Display(Name = "Reverse5"), Description("预留字段5"), MaxLength(1000, ErrorMessage = "预留字段5 不能超过 1000 个字符")]
public string Reverse5 { get; set; }
/// <summary>
/// 预留字段6
/// </summary>
[Display(Name = "Reverse6"), Description("预留字段6"), MaxLength(1000, ErrorMessage = "预留字段6 不能超过 1000 个字符")]
public string Reverse6 { get; set; }
/// <summary>
/// 预留字段7
/// </summary>
[Display(Name = "Reverse7"), Description("预留字段7"), MaxLength(1000, ErrorMessage = "预留字段7 不能超过 1000 个字符")]
public string Reverse7 { get; set; }
/// <summary>
/// 预留字段8
/// </summary>
[Display(Name = "Reverse8"), Description("预留字段8"), MaxLength(1000, ErrorMessage = "预留字段8 不能超过 1000 个字符")]
public string Reverse8 { get; set; }
/// <summary>
/// 预留字段9
/// </summary>
[Display(Name = "Reverse9"), Description("预留字段9"), MaxLength(1000, ErrorMessage = "预留字段9 不能超过 1000 个字符")]
public string Reverse9 { get; set; }
/// <summary>
/// 预留字段10
/// </summary>
[Display(Name = "Reverse10"), Description("预留字段10"), MaxLength(1000, ErrorMessage = "预留字段10 不能超过 1000 个字符")]
public string Reverse10 { get; set; }
/// <summary>
/// 预留字段11
/// </summary>
public int? ReverseI1 { get; set; }
/// <summary>
/// 预留字段12
/// </summary>
public int? ReverseI2 { get; set; }
}

@ -0,0 +1,26 @@
/* ,
* Ghrh_OfferApplyOrder.cs
*
* N / A
* Ghrh_OfferApplyOrder
*
* Ver
*
*V0.01 2024/12/5 11:57:37 SimonHsiao
*
* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved.
*
*  
* SimonHsiao
*
*/
namespace Tiobon.Core.Model.Models;
/// <summary>
/// 录用审批单 (Dto.EditInput)
/// </summary>
public class EditGhrh_OfferApplyOrderInput : Ghrh_OfferApplyOrderBase
{
}

@ -0,0 +1,26 @@
/* ,
* Ghrh_OfferApplyOrderSalary.cs
*
* N / A
* Ghrh_OfferApplyOrderSalary
*
* Ver
*
*V0.01 2024/12/5 11:57:15 SimonHsiao
*
* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved.
*
*  
* SimonHsiao
*
*/
namespace Tiobon.Core.Model.Models;
/// <summary>
/// 录用审批单薪资 (Dto.EditInput)
/// </summary>
public class EditGhrh_OfferApplyOrderSalaryInput : Ghrh_OfferApplyOrderSalaryBase
{
}

@ -0,0 +1,26 @@
/* ,
* Ghrh_OfferApplyOrder.cs
*
* N / A
* Ghrh_OfferApplyOrder
*
* Ver
*
*V0.01 2024/12/5 11:57:37 SimonHsiao
*
* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved.
*
*  
* SimonHsiao
*
*/
namespace Tiobon.Core.Model.Models;
/// <summary>
/// 录用审批单 (Dto.InsertInput)
/// </summary>
public class InsertGhrh_OfferApplyOrderInput : Ghrh_OfferApplyOrderBase
{
}

@ -0,0 +1,26 @@
/* ,
* Ghrh_OfferApplyOrderSalary.cs
*
* N / A
* Ghrh_OfferApplyOrderSalary
*
* Ver
*
*V0.01 2024/12/5 11:57:15 SimonHsiao
*
* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved.
*
*  
* SimonHsiao
*
*/
namespace Tiobon.Core.Model.Models;
/// <summary>
/// 录用审批单薪资 (Dto.InsertInput)
/// </summary>
public class InsertGhrh_OfferApplyOrderSalaryInput : Ghrh_OfferApplyOrderSalaryBase
{
}

@ -0,0 +1,292 @@
/* ,
* Ghrh_OfferApplyOrder.cs
*
* N / A
* Ghrh_OfferApplyOrder
*
* Ver
*
*V0.01 2024/12/5 11:57:37 SimonHsiao
*
* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved.
*
*  
* SimonHsiao
*
*/
namespace Tiobon.Core.Model.Models;
/// <summary>
/// 录用审批单 (Model)
/// </summary>
[SugarTable("Ghrh_OfferApplyOrder", "Ghrh_OfferApplyOrder"), Entity(TableCnName = "录用审批单", TableName = "Ghrh_OfferApplyOrder")]
public class Ghrh_OfferApplyOrder : BasePoco
{
/// <summary>
/// 简历ID
/// </summary>
public long? ResumeId { get; set; }
/// <summary>
/// 订单号
/// </summary>
[Display(Name = "OrderNo"), Description("订单号"), MaxLength(32, ErrorMessage = "订单号 不能超过 32 个字符")]
public string OrderNo { get; set; }
/// <summary>
/// 录用部门
/// </summary>
public int? DeptId { get; set; }
/// <summary>
/// 录用岗位
/// </summary>
public int? TitleId { get; set; }
/// <summary>
/// 招聘渠道
/// </summary>
[Display(Name = "Channel"), Description("招聘渠道"), MaxLength(32, ErrorMessage = "招聘渠道 不能超过 32 个字符")]
public string Channel { get; set; }
/// <summary>
/// 候选人姓名
/// </summary>
[Display(Name = "StaffName"), Description("候选人姓名"), MaxLength(64, ErrorMessage = "候选人姓名 不能超过 64 个字符")]
public string StaffName { get; set; }
/// <summary>
/// 身份证号码
/// </summary>
[Display(Name = "IdCardNo"), Description("身份证号码"), MaxLength(32, ErrorMessage = "身份证号码 不能超过 32 个字符")]
public string IdCardNo { get; set; }
/// <summary>
/// 预计入职日期
/// </summary>
public DateTime? InDate { get; set; }
/// <summary>
/// 员工类别
/// </summary>
[Display(Name = "StaffType"), Description("员工类别"), MaxLength(32, ErrorMessage = "员工类别 不能超过 32 个字符")]
public string StaffType { get; set; }
/// <summary>
/// 职等
/// </summary>
public int? GradeId { get; set; }
/// <summary>
/// 职称
/// </summary>
public int? JobId { get; set; }
/// <summary>
/// 试用期月数
/// </summary>
public int? ProbationMonths { get; set; }
/// <summary>
/// 汇报对象
/// </summary>
public int? ReportId { get; set; }
/// <summary>
/// 岗位职责
/// </summary>
[Display(Name = "JobResponsibility"), Description("岗位职责"), MaxLength(256, ErrorMessage = "岗位职责 不能超过 256 个字符")]
public string JobResponsibility { get; set; }
/// <summary>
/// 工作地点
/// </summary>
[Display(Name = "WorkAddress"), Description("工作地点"), MaxLength(128, ErrorMessage = "工作地点 不能超过 128 个字符")]
public string WorkAddress { get; set; }
/// <summary>
/// 试用期薪资
/// </summary>
[Display(Name = "ProbationSalary"), Description("试用期薪资"), Column(TypeName = "decimal(20,2)")]
public decimal? ProbationSalary { get; set; }
/// <summary>
/// 试用期满薪资
/// </summary>
[Display(Name = "ProbationAfterSalary"), Description("试用期满薪资"), Column(TypeName = "decimal(20,2)")]
public decimal? ProbationAfterSalary { get; set; }
/// <summary>
/// 发起时间
/// </summary>
public DateTime? ApplyTime { get; set; }
/// <summary>
/// 发起人ID
/// </summary>
public int? ApplicantId { get; set; }
/// <summary>
/// WorkID
/// </summary>
public int? WorkID { get; set; }
/// <summary>
/// WorkNo
/// </summary>
[Display(Name = "WorkNo"), Description("WorkNo"), MaxLength(100, ErrorMessage = "WorkNo 不能超过 100 个字符")]
public string WorkNo { get; set; }
/// <summary>
/// ToDoType
/// </summary>
[Display(Name = "ToDoType"), Description("ToDoType"), MaxLength(100, ErrorMessage = "ToDoType 不能超过 100 个字符")]
public string ToDoType { get; set; }
/// <summary>
/// BatchSID
/// </summary>
[Display(Name = "BatchSID"), Description("BatchSID"), MaxLength(100, ErrorMessage = "BatchSID 不能超过 100 个字符")]
public string BatchSID { get; set; }
/// <summary>
/// WorkState
/// </summary>
public int? WorkState { get; set; }
/// <summary>
/// ShiftID
/// </summary>
public int? ShiftID { get; set; }
/// <summary>
/// ConfirmUserID
/// </summary>
public int? ConfirmUserID { get; set; }
/// <summary>
/// ConfirmTime
/// </summary>
public DateTime? ConfirmTime { get; set; }
/// <summary>
/// ConfirmComment
/// </summary>
[Display(Name = "ConfirmComment"), Description("ConfirmComment"), MaxLength(2000, ErrorMessage = "ConfirmComment 不能超过 2000 个字符")]
public string ConfirmComment { get; set; }
/// <summary>
/// 同意人
/// </summary>
public long? AgreeUserId { get; set; }
/// <summary>
/// 同意时间
/// </summary>
public DateTime? AgreeTime { get; set; }
/// <summary>
/// 同意理由
/// </summary>
[Display(Name = "AgreeReason"), Description("同意理由"), MaxLength(2000, ErrorMessage = "同意理由 不能超过 2000 个字符")]
public string AgreeReason { get; set; }
/// <summary>
/// 拒绝人
/// </summary>
public long? RefuseUserId { get; set; }
/// <summary>
/// 拒绝时间
/// </summary>
public DateTime? RefuseTime { get; set; }
/// <summary>
/// 拒绝理由
/// </summary>
[Display(Name = "RefuseReason"), Description("拒绝理由"), MaxLength(2000, ErrorMessage = "拒绝理由 不能超过 2000 个字符")]
public string RefuseReason { get; set; }
/// <summary>
/// 备注
/// </summary>
[Display(Name = "RemarkSz"), Description("备注"), MaxLength(2000, ErrorMessage = "备注 不能超过 2000 个字符")]
public string RemarkSz { get; set; }
/// <summary>
/// 默认标志
/// </summary>
public int? IsDefault { get; set; }
/// <summary>
/// 预留字段1
/// </summary>
[Display(Name = "Reverse1"), Description("预留字段1"), MaxLength(1000, ErrorMessage = "预留字段1 不能超过 1000 个字符")]
public string Reverse1 { get; set; }
/// <summary>
/// 预留字段2
/// </summary>
[Display(Name = "Reverse2"), Description("预留字段2"), MaxLength(1000, ErrorMessage = "预留字段2 不能超过 1000 个字符")]
public string Reverse2 { get; set; }
/// <summary>
/// 预留字段3
/// </summary>
[Display(Name = "Reverse3"), Description("预留字段3"), MaxLength(1000, ErrorMessage = "预留字段3 不能超过 1000 个字符")]
public string Reverse3 { get; set; }
/// <summary>
/// 预留字段4
/// </summary>
[Display(Name = "Reverse4"), Description("预留字段4"), MaxLength(1000, ErrorMessage = "预留字段4 不能超过 1000 个字符")]
public string Reverse4 { get; set; }
/// <summary>
/// 预留字段5
/// </summary>
[Display(Name = "Reverse5"), Description("预留字段5"), MaxLength(1000, ErrorMessage = "预留字段5 不能超过 1000 个字符")]
public string Reverse5 { get; set; }
/// <summary>
/// 预留字段6
/// </summary>
[Display(Name = "Reverse6"), Description("预留字段6"), MaxLength(1000, ErrorMessage = "预留字段6 不能超过 1000 个字符")]
public string Reverse6 { get; set; }
/// <summary>
/// 预留字段7
/// </summary>
[Display(Name = "Reverse7"), Description("预留字段7"), MaxLength(1000, ErrorMessage = "预留字段7 不能超过 1000 个字符")]
public string Reverse7 { get; set; }
/// <summary>
/// 预留字段8
/// </summary>
[Display(Name = "Reverse8"), Description("预留字段8"), MaxLength(1000, ErrorMessage = "预留字段8 不能超过 1000 个字符")]
public string Reverse8 { get; set; }
/// <summary>
/// 预留字段9
/// </summary>
[Display(Name = "Reverse9"), Description("预留字段9"), MaxLength(1000, ErrorMessage = "预留字段9 不能超过 1000 个字符")]
public string Reverse9 { get; set; }
/// <summary>
/// 预留字段10
/// </summary>
[Display(Name = "Reverse10"), Description("预留字段10"), MaxLength(1000, ErrorMessage = "预留字段10 不能超过 1000 个字符")]
public string Reverse10 { get; set; }
/// <summary>
/// 预留字段11
/// </summary>
public int? ReverseI1 { get; set; }
/// <summary>
/// 预留字段12
/// </summary>
public int? ReverseI2 { get; set; }
}

@ -0,0 +1,128 @@
/* ,
* Ghrh_OfferApplyOrderSalary.cs
*
* N / A
* Ghrh_OfferApplyOrderSalary
*
* Ver
*
*V0.01 2024/12/5 11:57:15 SimonHsiao
*
* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved.
*
*  
* SimonHsiao
*
*/
namespace Tiobon.Core.Model.Models;
/// <summary>
/// 录用审批单薪资 (Model)
/// </summary>
[SugarTable("Ghrh_OfferApplyOrderSalary", "Ghrh_OfferApplyOrderSalary"), Entity(TableCnName = "录用审批单薪资", TableName = "Ghrh_OfferApplyOrderSalary")]
public class Ghrh_OfferApplyOrderSalary : BasePoco
{
/// <summary>
/// 面试评估ID
/// </summary>
public long? OrderId { get; set; }
/// <summary>
/// 项目
/// </summary>
public int? SalaryItemId { get; set; }
/// <summary>
/// 金额
/// </summary>
[Display(Name = "Amount"), Description("金额"), Column(TypeName = "decimal(20,2)")]
public decimal? Amount { get; set; }
/// <summary>
/// 币别
/// </summary>
public int? CurrencyId { get; set; }
/// <summary>
/// 备注
/// </summary>
[Display(Name = "RemarkSz"), Description("备注"), MaxLength(2000, ErrorMessage = "备注 不能超过 2000 个字符")]
public string RemarkSz { get; set; }
/// <summary>
/// 默认标志
/// </summary>
public int? IsDefault { get; set; }
/// <summary>
/// 预留字段1
/// </summary>
[Display(Name = "Reverse1"), Description("预留字段1"), MaxLength(1000, ErrorMessage = "预留字段1 不能超过 1000 个字符")]
public string Reverse1 { get; set; }
/// <summary>
/// 预留字段2
/// </summary>
[Display(Name = "Reverse2"), Description("预留字段2"), MaxLength(1000, ErrorMessage = "预留字段2 不能超过 1000 个字符")]
public string Reverse2 { get; set; }
/// <summary>
/// 预留字段3
/// </summary>
[Display(Name = "Reverse3"), Description("预留字段3"), MaxLength(1000, ErrorMessage = "预留字段3 不能超过 1000 个字符")]
public string Reverse3 { get; set; }
/// <summary>
/// 预留字段4
/// </summary>
[Display(Name = "Reverse4"), Description("预留字段4"), MaxLength(1000, ErrorMessage = "预留字段4 不能超过 1000 个字符")]
public string Reverse4 { get; set; }
/// <summary>
/// 预留字段5
/// </summary>
[Display(Name = "Reverse5"), Description("预留字段5"), MaxLength(1000, ErrorMessage = "预留字段5 不能超过 1000 个字符")]
public string Reverse5 { get; set; }
/// <summary>
/// 预留字段6
/// </summary>
[Display(Name = "Reverse6"), Description("预留字段6"), MaxLength(1000, ErrorMessage = "预留字段6 不能超过 1000 个字符")]
public string Reverse6 { get; set; }
/// <summary>
/// 预留字段7
/// </summary>
[Display(Name = "Reverse7"), Description("预留字段7"), MaxLength(1000, ErrorMessage = "预留字段7 不能超过 1000 个字符")]
public string Reverse7 { get; set; }
/// <summary>
/// 预留字段8
/// </summary>
[Display(Name = "Reverse8"), Description("预留字段8"), MaxLength(1000, ErrorMessage = "预留字段8 不能超过 1000 个字符")]
public string Reverse8 { get; set; }
/// <summary>
/// 预留字段9
/// </summary>
[Display(Name = "Reverse9"), Description("预留字段9"), MaxLength(1000, ErrorMessage = "预留字段9 不能超过 1000 个字符")]
public string Reverse9 { get; set; }
/// <summary>
/// 预留字段10
/// </summary>
[Display(Name = "Reverse10"), Description("预留字段10"), MaxLength(1000, ErrorMessage = "预留字段10 不能超过 1000 个字符")]
public string Reverse10 { get; set; }
/// <summary>
/// 预留字段11
/// </summary>
public int? ReverseI1 { get; set; }
/// <summary>
/// 预留字段12
/// </summary>
public int? ReverseI2 { get; set; }
}

@ -0,0 +1,34 @@
/* ,
* Ghrh_OfferApplyOrder.cs
*
* N / A
* Ghrh_OfferApplyOrder
*
* Ver
*
*V0.01 2024/12/5 11:57:37 SimonHsiao
*
* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved.
*
*  
* SimonHsiao
*
*/
namespace Tiobon.Core.Model.Models;
/// <summary>
/// 录用审批单(Dto.View1)
/// </summary>
public class Ghrh_OfferApplyOrderDto : Ghrh_OfferApplyOrder
{
/// <summary>
/// 创建信息
/// </summary>
public string CreateDataInfo { get; set; }
/// <summary>
/// 修改信息
/// </summary>
public string UpdateDataInfo { get; set; }
}

@ -0,0 +1,34 @@
/* ,
* Ghrh_OfferApplyOrderSalary.cs
*
* N / A
* Ghrh_OfferApplyOrderSalary
*
* Ver
*
*V0.01 2024/12/5 11:57:15 SimonHsiao
*
* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved.
*
*  
* SimonHsiao
*
*/
namespace Tiobon.Core.Model.Models;
/// <summary>
/// 录用审批单薪资(Dto.View1)
/// </summary>
public class Ghrh_OfferApplyOrderSalaryDto : Ghrh_OfferApplyOrderSalary
{
/// <summary>
/// 创建信息
/// </summary>
public string CreateDataInfo { get; set; }
/// <summary>
/// 修改信息
/// </summary>
public string UpdateDataInfo { get; set; }
}

@ -0,0 +1,15 @@
namespace Tiobon.Core.Services;
/// <summary>
/// 录用审批单薪资 (服务)
/// </summary>
public class Ghrh_OfferApplyOrderSalaryServices : BaseServices<Ghrh_OfferApplyOrderSalary, Ghrh_OfferApplyOrderSalaryDto, InsertGhrh_OfferApplyOrderSalaryInput, EditGhrh_OfferApplyOrderSalaryInput>, IGhrh_OfferApplyOrderSalaryServices
{
private readonly IBaseRepository<Ghrh_OfferApplyOrderSalary> _dal;
public Ghrh_OfferApplyOrderSalaryServices(ICaching caching, IBaseRepository<Ghrh_OfferApplyOrderSalary> dal)
{
this._dal = dal;
base.BaseDal = dal;
base._caching = caching;
}
}

@ -0,0 +1,15 @@
namespace Tiobon.Core.Services;
/// <summary>
/// 录用审批单 (服务)
/// </summary>
public class Ghrh_OfferApplyOrderServices : BaseServices<Ghrh_OfferApplyOrder, Ghrh_OfferApplyOrderDto, InsertGhrh_OfferApplyOrderInput, EditGhrh_OfferApplyOrderInput>, IGhrh_OfferApplyOrderServices
{
private readonly IBaseRepository<Ghrh_OfferApplyOrder> _dal;
public Ghrh_OfferApplyOrderServices(ICaching caching, IBaseRepository<Ghrh_OfferApplyOrder> dal)
{
this._dal = dal;
base.BaseDal = dal;
base._caching = caching;
}
}
Loading…
Cancel
Save