using System.Linq; using Edu.Model.Entity.User; namespace Edu.Repository.User { /// /// 每月请假时长 /// public partial class RB_Attendance_LeaveTimeRepository : BaseRepository { /// /// 获取 /// /// /// /// /// public RB_Attendance_LeaveTime Get(int eid, string MonthStr, int AskforleaveType) { string where = $@" where 1=1 and {nameof(RB_Attendance_LeaveTime.EmployeeId)}={eid} and {nameof(RB_Attendance_LeaveTime.AskforleaveMonth)}='{MonthStr}' and {nameof(RB_Attendance_LeaveTime.AskforleaveType)}={AskforleaveType}"; return Get($" select * from rb_attendance_leavetime {where}").FirstOrDefault(); } } }