嗨森逛服务
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hai-server/hai-service/src/main/java/com/hai/model/HighCouponAgentCodeModel.java

24 lines
522 B

4 years ago
package com.hai.model;
import com.hai.entity.HighCouponAgentCode;
import java.util.List;
/**
* @Auther: 胡锐
* @Description:
* @Date: 2021/4/20 23:01
*/
public class HighCouponAgentCodeModel {
private List<HighCouponAgentCode> couponAgentCodeList;
public List<HighCouponAgentCode> getCouponAgentCodeList() {
return couponAgentCodeList;
}
public void setCouponAgentCodeList(List<HighCouponAgentCode> couponAgentCodeList) {
this.couponAgentCodeList = couponAgentCodeList;
}
}