增加 交接班接口
parent
6ee66a6b50
commit
1a9724ae8d
@ -0,0 +1,8 @@
|
|||||||
|
package org.dromara.auth.domain.vo;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class PDALoginVo extends LoginVo{
|
||||||
|
private String nickname;
|
||||||
|
}
|
@ -0,0 +1,14 @@
|
|||||||
|
package org.dromara.wms.domain;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
import org.dromara.common.tenant.core.TenantEntity;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class ShiftChange extends TenantEntity {
|
||||||
|
// INSERT INTO prod_shift_change (shift_id, class_team_id, user_id, user_name)
|
||||||
|
// VALUES (1, 1, 1, N'admin');
|
||||||
|
private Long shiftId;
|
||||||
|
private Long classTeamId;
|
||||||
|
private Long userId;
|
||||||
|
private String userName;
|
||||||
|
}
|
@ -0,0 +1,10 @@
|
|||||||
|
package org.dromara.wms.domain.vo;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class TeamInfoVo {
|
||||||
|
private Long teamId;
|
||||||
|
private String teamName;
|
||||||
|
private String type;
|
||||||
|
}
|
Loading…
Reference in New Issue