8 changed files with 43 additions and 9 deletions
@ -0,0 +1,22 @@ |
|||
package com.elink.esua.epdc.activity.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* banner列表入参 |
|||
* |
|||
* @author zhangyong |
|||
* @since v1.0.0 2020-06-02 |
|||
*/ |
|||
@Data |
|||
public class EpdcAppBannerFormDTO implements Serializable { |
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* banner类型:0-(活动/志愿者banner), 2-志愿者证书 |
|||
*/ |
|||
private String bannerType; |
|||
} |
Loading…
Reference in new issue