|
|
@@ -82,6 +82,9 @@ func (s Service) List(req model.ListReq, user request.UserInfo) ([]accountModel.
|
|
|
if entity.FeeType != "" {
|
|
|
where += fmt.Sprintf(" AND FeeType='%v'", entity.FeeType)
|
|
|
}
|
|
|
+ if entity.BillId != "" {
|
|
|
+ where += fmt.Sprintf(" AND BillId='%v'", entity.BillId)
|
|
|
+ }
|
|
|
if entity.AppointStartDate != "" && entity.AppointEndDate != "" {
|
|
|
where += fmt.Sprintf(" AND AppointStartDate>'%v' AND AppointEndDate<'%v'", entity.AppointStartDate, entity.AppointEndDate)
|
|
|
}
|