FROM RB_Student_Appointment AS A INNER JOIN rb_student AS B ON A.StuId=B.StuId
WHERE 1=1
");
builder.AppendFormat(" AND A.{0}={1} ",nameof(RB_Student_Appointment_Extend.Status),(int)DateStateEnum.Normal);
if(query!=null)
{
if(query.Group_Id>0)
{
builder.AppendFormat(" AND A.{0}={1} ",nameof(RB_Student_Appointment_Extend.Group_Id),query.Group_Id);
}
if(query.StuId>0)
{
builder.AppendFormat(" AND A.{0}={1} ",nameof(RB_Student_Appointment_Extend.StuId),query.StuId);
}
if(query.CreateBy>0)
{
builder.AppendFormat(" AND A.{0}={1} ",nameof(RB_Student_Appointment_Extend.CreateBy),query.CreateBy);
}
if(!string.IsNullOrEmpty(query.QueryDate))
{
//今日到访
builder.AppendFormat(" AND DATE_FORMAT(A.{0},'%y/%m/%d')= DATE_FORMAT('{1}','%y/%m/%d') ",nameof(RB_Student_Visit_Extend.CreateTime),Common.ConvertHelper.FormatDate(query.QueryDate));