| | |
| | | public interface StockDzService extends IService<StockDz> { |
| | | |
| | | |
| | | Result getDzList(int pageNum, int pageSize, String orderBy, String keyWords, HttpServletRequest request); |
| | | Result getDzList(int pageNum, int pageSize, String orderBy, String keyWords, String stockType); |
| | | |
| | | Result addByAdmin(String stockCode, String stockNum, String password, String startTime, String endTime, String discount,Integer period,String nowPrice,Integer switchType); |
| | | |
| | | Result getDzListByAdmin(int pageNum, int pageSize, String keywords); |
| | | Result getDzListByAdmin(int pageNum, int pageSize, String keywords, String stockType); |
| | | |
| | | Result updByAdmin(StockDz model); |
| | | |
| | | Result deleteByAdmin(String id); |
| | | |
| | | Result getDzOrderList(int pageNum, int pageSize, String state, String userId, String stockType); |
| | | |
| | | Result getDzCheckList(int pageNum, int pageSize, String state, String stockCode, String stockType); |
| | | |
| | | Result buyDz(String dzId, String password, double num, String partyId); |
| | | |
| | | Result dzCheck(String id, Integer checkType, double num); |
| | | |
| | | } |