zxl
2025-07-31 5b7d9c5dc4066df05f817a503365c9b95dda824e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package cn.lili.event;
 
import cn.lili.modules.member.entity.dos.MemberEvaluation;
 
/**
 * 订单状态改变事件
 *
 * @author Chopper
 * @since 2020/11/17 7:13 下午
 */
public interface GoodsCommentCompleteEvent {
 
    /**
     * 商品评价
     * @param memberEvaluation 会员评价
     */
    void goodsComment(MemberEvaluation memberEvaluation);
}