Exemplo n.º 1
0
        public static List <Model.T_BASE_SJYPZModel> GetSJYPZFromGroupId(string groupId)
        {
            string where = "T.BL2='" + groupId + "' AND T.SFSC=0";
            string order = "T.BL1,T.PZBM";

            Access.FactoryT_BASE_SJYPZAccess af = new Access.FactoryT_BASE_SJYPZAccess();
            return(af.QueryList(where, order));
        }
Exemplo n.º 2
0
        public static List <Model.T_BASE_SJYPZModel> GetAllSJYPZ()
        {
            string where = "T.SFSC=0";
            string order = "T.BL1,T.PZBM";

            Access.FactoryT_BASE_SJYPZAccess af = new Access.FactoryT_BASE_SJYPZAccess();
            return(af.QueryList(where, order));
        }