Exemplo n.º 1
0
        public string GetMeasureCertificateList(int _measureId)
        {
            DataTable dt = new DataTable();

            if (_measureId > 0)
            {
                try
                {
                    tb_attachmentBLL _attachmentbll = new tb_attachmentBLL();
                    dt = _attachmentbll.GetList(" type1='计量管理' and type2='计量' and tId = " + _measureId).Tables[0];
                }
                catch
                {
                }
            }
            return(PublicClass.ToJson(dt, dt.Rows.Count));
        }