master
parent
361bd8c306
commit
824816609f
1 changed files with 40 additions and 0 deletions
@ -0,0 +1,40 @@ |
||||
package com.daqing.framework.domain.crms.request; |
||||
|
||||
import lombok.Data; |
||||
import lombok.ToString; |
||||
|
||||
import java.io.Serializable; |
||||
|
||||
/** |
||||
* 记录客户基本信息 |
||||
* |
||||
* @author gongsj |
||||
* @email gongsj@gmail.com |
||||
* @date 2020-09-08 11:23:28 |
||||
*/ |
||||
@Data |
||||
@ToString |
||||
public class CustomerRequest implements Serializable { |
||||
|
||||
/** |
||||
* 客户编号或者名称 |
||||
*/ |
||||
private String codeOrName; |
||||
/** |
||||
* 客户类型 |
||||
*/ |
||||
private Integer customerType; |
||||
/** |
||||
* 创建时间 |
||||
*/ |
||||
private Integer createTime; |
||||
/** |
||||
* 起始时间 |
||||
*/ |
||||
private String startTime; |
||||
/** |
||||
* 结束时间 |
||||
*/ |
||||
private String endTime; |
||||
|
||||
} |
Loading…
Reference in new issue