11
whywhyo
2023-05-16 b0b43e2ac0ba96117b10bf722793f050ea94b200
zhang-content/src/main/java/com/ruoyi/service/IZfPropertyService.java
@@ -2,10 +2,9 @@
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.common.core.domain.AjaxResult;
import com.ruoyi.domain.PageParams;
import com.ruoyi.domain.ZfProperty;
import org.springframework.web.multipart.MultipartFile;
import java.time.LocalDateTime;
import java.util.List;
@@ -16,6 +15,14 @@
 */
public interface IZfPropertyService extends IService<ZfProperty>
{
    AjaxResult selectUserList(ZfProperty zfProperty,Integer pageNum,Integer pageSize);
    List<ZfProperty> selectByCondition(ZfProperty zfProperty);
    AjaxResult selectPropertyList(ZfProperty zfProperty,Integer pageNum,Integer pageSize);
    AjaxResult addData(ZfProperty zfProperty);
    AjaxResult addData2(ZfProperty zfProperty);
    AjaxResult importExcel(MultipartFile file);
}