username@email.com
2021-06-25 77f8f99697748749edd553b127de34b02ccb18c5
zhengcaioa/Services/SimService.cs
@@ -332,6 +332,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
    }
}