/// <summary> /// 更新一条数据 /// </summary> public bool Updates(FMS_Model.fms_refund_bill model) { return(dal.Updates(model)); }
/// <summary> /// 审核 /// </summary> public bool updateStatus(FMS_Model.fms_refund_bill model, string idList) { return(dal.updateStatus(model, idList)); }
/// <summary> /// 付款 /// </summary> public bool pay_kuan(FMS_Model.fms_refund_bill model, string idList) { return(dal.pay_kuan(model, idList)); }
/// <summary> /// 增加一条数据 /// </summary> public bool Add(FMS_Model.fms_refund_bill model) { return(dal.Add(model)); }