You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
655 B
Java
29 lines
655 B
Java
package com.glxp.api.req.dev;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.glxp.api.enums.dev.DeviceChangeTypeEnum;
|
|
import lombok.Data;
|
|
|
|
import javax.validation.constraints.NotEmpty;
|
|
import javax.validation.constraints.NotNull;
|
|
|
|
@Data
|
|
public class DeviceChangeOrderGenerateOrderId {
|
|
|
|
/**
|
|
* 部门编码
|
|
*/
|
|
@TableField(value = "deptCode")
|
|
@NotEmpty(message = "操作部门不能为空!")
|
|
private String deptCode;
|
|
|
|
/**
|
|
* 部门编码
|
|
*/
|
|
@TableField(value = "toDeptCode")
|
|
private String toDeptCode;
|
|
|
|
@NotNull(message = "类型不能为空")
|
|
private DeviceChangeTypeEnum type;
|
|
}
|