findme-backend-merchant-java/src/main/java/com/xjhs/findmemerchant/dto/member/EmployeeDto.java

39 lines
680 B
Java
Raw Normal View History

2026-01-09 12:20:24 +08:00
package com.xjhs.findmemerchant.dto.member;
2026-01-09 12:20:44 +08:00
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
import lombok.Data;
import java.time.LocalDateTime;
@Data
2026-01-09 12:20:24 +08:00
public class EmployeeDto {
2026-01-09 12:20:44 +08:00
2026-01-09 12:59:02 +08:00
private String id;
2026-01-09 12:20:44 +08:00
/**
* 员工姓名
*/
private String name;
/**
* 手机号码
*/
private String phone;
/**
* 关联角色id
*/
2026-01-09 12:59:02 +08:00
private String roleId;
2026-01-09 12:20:44 +08:00
/**
* 关联门店id
*/
2026-01-09 12:59:02 +08:00
private String storeId;
2026-01-09 12:20:44 +08:00
/**
* 员工状态
*/
private Integer status;
/**
* 创建时间
*/
private LocalDateTime createdAt;
2026-01-09 12:20:24 +08:00
}