username@email.com
2021-06-25 59af9c7cbaf7eb16cca00c11426729d012196d88
zhengcaioa/Services/SimService.cs
@@ -338,6 +338,17 @@
            return data;
        }
        public SimCostView GetSimCost(string userid, int bill_year, int bill_month)
        {
            var entity = _context.SimCostView.Where(x => x.user_id == userid && x.bill_year == bill_year && x.bill_month  == bill_month).FirstOrDefault();
            return entity;
        }
        #endregion
    }
}