7 changed files with 131 additions and 44 deletions
@ -0,0 +1,39 @@ |
|||
package com.epmet.dto.form.policy; |
|||
|
|||
import com.epmet.commons.tools.dto.form.PageFormDTO; |
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Description |
|||
* @Author yzm |
|||
* @Date 2022/7/19 15:36 |
|||
*/ |
|||
@Data |
|||
public class IcPolicyPageFormDTO extends PageFormDTO implements Serializable { |
|||
/** |
|||
* 客户id |
|||
*/ |
|||
private String customerId; |
|||
private String staffId; |
|||
|
|||
/** |
|||
* 政策标题 |
|||
*/ |
|||
private String title; |
|||
|
|||
/** |
|||
* 政策内容 |
|||
*/ |
|||
private String content; |
|||
|
|||
/** |
|||
* 是否过期;1:已过期;0:未过期 |
|||
*/ |
|||
private String expiredFlag; |
|||
|
|||
private String agencyId; |
|||
|
|||
} |
|||
|
|||
Loading…
Reference in new issue