linhui.li 3 долоо хоног өмнө
parent
commit
eef7ef168b

+ 10 - 0
lot/src/main/java/cn/hobbystocks/auc/service/LotNoticeService.java

@@ -15,4 +15,14 @@ public interface LotNoticeService extends IService<LotNotice> {
      */
     List<LotNotice> selectLotNoticeList(LotNotice lotNotice);
 
+    /**
+     * 编辑拍卖公告
+     * @param lotNotice
+     * @return
+     */
+    boolean editLotNot(LotNotice lotNotice);
+
+    /**
+     *
+     */
 }

+ 5 - 0
lot/src/main/java/cn/hobbystocks/auc/service/impl/LotNoticeServiceImpl.java

@@ -14,4 +14,9 @@ public class LotNoticeServiceImpl extends ServiceImpl<LotNoticeMapper, LotNotice
     public List<LotNotice> selectLotNoticeList(LotNotice lotNotice) {
         return null;
     }
+
+    @Override
+    public boolean editLotNot(LotNotice lotNotice) {
+        return false;
+    }
 }

+ 2 - 1
lot/src/main/resources/mapper/LotMapper.xml

@@ -48,11 +48,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
         <result property="groupId" column="group_id"/>
         <result property="deposit" column="deposit"/>
         <result property="serviceTariff" column="service_tariff"/>
+        <result property="payTimeLimit" column="pay_time_limit"/>
     </resultMap>
 
     <sql id="selectLotVo">
         select id, goods_id, auction_id, name, num, unit, imgs, detail, pub_status, pub_time, status, start_time, end_time, real_end_time, rule_type, rule_content, last_price, last_price_time, deal_price, deal_time, deal_account_id, deal_account, paid,  bid_count, bid_persion_count, del_flag, create_by, create_time, update_by, update_time, sort,
-        carousel_imgs,merchant_id,merchant_name,merchant_avatar,goods_name,goods_type,private_domain,delay_publish,pub_status,group_id,deposit,service_tariff
+        carousel_imgs,merchant_id,merchant_name,merchant_avatar,goods_name,goods_type,private_domain,delay_publish,pub_status,group_id,deposit,service_tariff,pay_time_limit
          from lot
     </sql>