using DTO;
|
using DTO.WebCrawler;
|
using Microsoft.AspNetCore.Mvc.Rendering;
|
using System;
|
using System.Collections.Generic;
|
using System.Text;
|
using zhengcaioa.Models;
|
|
namespace IServices
|
{
|
public interface IProjectService
|
{
|
ResultEntity saveLiaotian(ProjectDTO project);
|
|
ProjectDTO GetLiaotianEntity(string id);
|
|
ResultDataEntity<ProjectDTO> SearchByPaging(ProjectDTOSearch searchEntity);
|
|
|
List<Zhuanjium> Getzhuanjie();
|
|
List<Cgf> GetCgfs();
|
|
List<Area> Getsheng();
|
|
List<Area> Getshi(string sheng);
|
|
List<Area> Getquxian(string shi);
|
|
/// <summary>
|
/// 获取采购方式下拉列表
|
/// </summary>
|
/// <returns></returns>
|
List<SelectListItem> AllcgfsDropDown();
|
|
ResultEntity ModifyStatus(string id, string userid);
|
|
List<ProjectDTO> GetList();
|
|
|
List<ProjectDTO> GetListsalary(string userid, DateTime datemin, DateTime datemax);
|
|
List<ZhengfuProjectDTO> GetcaigougonggaoListsalary(string userid, DateTime datemin, DateTime datemax);
|
|
ResultEntity saveZxdsfxl(ZxdsfxlDTO zxdsfxl);
|
|
List<ZxdsfxlDTO> GetListZxdsfxl(string userid, DateTime datemin, DateTime datemax,string leixing);
|
|
ResultEntity savezhiyi(string zhiyistatus, DateTime? zhiyishijian, string zhiyichengli, string projiectid, string mingxiid, string type);
|
|
ResultEntity savetousu(string tousustatus, DateTime? tousushijian, string tousuchengli, string projiectid, string mingxiid, string type);
|
|
|
ResultDataEntity<ZhengfuProjectDTO> SearchByPagingCaigougonggao(ZhengfuProjectDTOSearch searchEntity);
|
|
ZhengfuProjectDTO GetZhengfuProjectDTO(string id);
|
|
ResultEntity saveZhengfuProjectDTO(ZhengfuProjectDTO dto);
|
|
ResultEntity GetZhengfuProjectDTOByPageurl(string Pageurl,string Id);
|
ResultEntity GetZhengfuProjectDTOByTitle(string Title, string Id,DateTime? NoticeTime);
|
ResultEntity saveProjectfasongxiaoxi(Projectfasongxiaoxi project);
|
}
|
}
|