forked from rongchao/epmet-cloud-rizhao
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.
71 lines
973 B
71 lines
973 B
package com.epmet.dto;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* @Description
|
|
* @ClassName UserDTO
|
|
* @Author wangc
|
|
* @date 2020.03.28 15:11
|
|
*/
|
|
@Data
|
|
public class UserDTO implements Serializable{
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
/**
|
|
* 唯一标识
|
|
*/
|
|
private String id;
|
|
|
|
|
|
/**
|
|
* 来源App
|
|
* */
|
|
private String fromApp;
|
|
|
|
/**
|
|
* 来源client
|
|
* */
|
|
private String fromClient;
|
|
|
|
/**
|
|
* 删除标识:0.未删除 1.已删除
|
|
*/
|
|
private String delFlag;
|
|
|
|
/**
|
|
* 乐观锁
|
|
*/
|
|
private Integer revision;
|
|
|
|
/**
|
|
* 创建人
|
|
*/
|
|
private String createdBy;
|
|
|
|
/**
|
|
* 创建时间
|
|
*/
|
|
private Date createdTime;
|
|
|
|
/**
|
|
* 更新人
|
|
*/
|
|
private String updatedBy;
|
|
|
|
/**
|
|
* 更新时间
|
|
*/
|
|
private Date updatedTime;
|
|
|
|
/**
|
|
* 客户ID
|
|
*/
|
|
private String customerId;
|
|
|
|
}
|
|
|