| 1234567891011121314151617181920212223 |
- package com.goafanti.common.dao;
- import com.goafanti.common.model.OrganizationProperties;
- public interface OrganizationPropertiesMapper {
- int deleteByPrimaryKey(String id);
- int insert(OrganizationProperties record);
- int insertSelective(OrganizationProperties record);
- OrganizationProperties selectByPrimaryKey(String id);
- int updateByPrimaryKeySelective(OrganizationProperties record);
- int updateByPrimaryKey(OrganizationProperties record);
-
-
- //根据组织id查询
- OrganizationProperties selectByOid(String oid);
- OrganizationProperties selectOrgProByUserId(String uid);
- }
|