Commit f914557b by guojuxing

运营实施管理员

parent 6c627090
package com.gic.auth.dto;
import java.io.Serializable;
import java.util.Date;
/**
* 运营实施人员
* @ClassName: OperationUserDTO

* @Description: 

* @author guojuxing

* @date 2019/11/12 3:02 PM

*/
public class OperationUserDTO implements Serializable{
private static final long serialVersionUID = 3358114509412598332L;
/**
* 用户id
*/
private Integer operationUserId;
/**
* 用户名
*/
private String operationUserName;
/**
* 手机号码
*/
private String phoneNumber;
/**
* 状态,1有效,0无效
*/
private Integer status;
/**
*
*/
private Date createTime;
/**
*
*/
private Date updateTime;
/**
*
*/
private Integer enterpriseId;
/**
* 国际区号,如中国 86
*/
private String phoneAreaCode;
public Integer getOperationUserId() {
return operationUserId;
}
public void setOperationUserId(Integer operationUserId) {
this.operationUserId = operationUserId;
}
public String getOperationUserName() {
return operationUserName;
}
public void setOperationUserName(String operationUserName) {
this.operationUserName = operationUserName;
}
public String getPhoneNumber() {
return phoneNumber;
}
public void setPhoneNumber(String phoneNumber) {
this.phoneNumber = phoneNumber;
}
public Integer getStatus() {
return status;
}
public void setStatus(Integer status) {
this.status = status;
}
public Date getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public Date getUpdateTime() {
return updateTime;
}
public void setUpdateTime(Date updateTime) {
this.updateTime = updateTime;
}
public Integer getEnterpriseId() {
return enterpriseId;
}
public void setEnterpriseId(Integer enterpriseId) {
this.enterpriseId = enterpriseId;
}
public String getPhoneAreaCode() {
return phoneAreaCode;
}
public void setPhoneAreaCode(String phoneAreaCode) {
this.phoneAreaCode = phoneAreaCode;
}
}
package com.gic.auth.service;
import com.gic.api.base.commons.ServiceResponse;
import com.gic.auth.dto.OperationUserDTO;
/**
* 运营实施管理员
* @ClassName: OperationUserApiService

* @Description: 

* @author guojuxing

* @date 2019/11/12 3:03 PM

*/
public interface OperationUserApiService {
/**
* 手机号码查询运营
* @Title: getByPhone

* @Description:

 * @author guojuxing
* @param phone
* @param enterpriseId

* @return com.gic.api.base.commons.ServiceResponse<com.gic.auth.dto.OperationUserDTO>


 */
ServiceResponse<OperationUserDTO> getByPhone(String phone, Integer enterpriseId);
/**
* 新增
* @Title: save

* @Description:

 * @author guojuxing
* @param dto

* @return com.gic.api.base.commons.ServiceResponse<java.lang.Void>


 */
ServiceResponse<Void> save(OperationUserDTO dto);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment