Add hiring, AI parser+admin, OTP auth, employer dashboard, profit-share pay
- Hiring (استخدام) listings: JobOpening + /Jobs browse/detail + home section - Heuristic Persian listing-parser + admin queue (/Admin) → publish shift/job - Phone-OTP cookie auth + visitor-history linking + profile; Admin role gate - Employer side: self-serve facility registration, dashboard, post/manage shifts & jobs, applicants list with contact - Compensation models: fixed / hourly / profit-share (درصدی) / negotiable / choice (به انتخاب شما); SharePercent + JalaliDate.PayLabel; parser + filter Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@@ -41,7 +41,8 @@ public enum PayType
|
||||
{
|
||||
PerShift = 0, // مقطوع برای هر شیفت
|
||||
PerHour = 1, // ساعتی
|
||||
Negotiable = 2 // توافقی
|
||||
Negotiable = 2, // توافقی
|
||||
Percentage = 3 // درصدی / سهم درآمد
|
||||
}
|
||||
|
||||
public enum ApplicationStatus
|
||||
|
||||
@@ -25,7 +25,8 @@ public class Shift
|
||||
|
||||
public ShiftType ShiftType { get; set; } = ShiftType.Day;
|
||||
|
||||
public long? PayAmount { get; set; } // مبلغ (تومان)؛ null یعنی توافقی
|
||||
public long? PayAmount { get; set; } // مبلغ مقطوع (تومان)؛ null اگر فقط درصدی/توافقی
|
||||
public int? SharePercent { get; set; } // سهم درآمد (٪)؛ مثلاً ۵۰. میتواند همراه مبلغ هم باشد
|
||||
public PayType PayType { get; set; } = PayType.PerShift;
|
||||
|
||||
[MaxLength(1500)]
|
||||
|
||||
Reference in New Issue
Block a user