package doumeemes.dao.ext.dto;
|
|
import doumeemes.core.annotation.excel.ExcelColumn;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import javax.validation.constraints.NotEmpty;
|
|
/**
|
* @author 江蹄蹄
|
* @date 2022/04/20 10:56
|
*/
|
@Data
|
@ApiModel("绩效工资配置")
|
public class SalaryParamDTO {
|
|
@ApiModelProperty(value = "物料名称或编码")
|
private String keyWord;
|
|
@ApiModelProperty(value = "工序名称")
|
private String procedureName;
|
|
@ApiModelProperty(value = "计价方式 0计件 1计时")
|
private Integer type;
|
|
@ApiModelProperty(value = "主组织编码(关联department表根组织)")
|
private Integer rootDepartId;
|
|
@ApiModelProperty(value = "工厂编码(关联department表)")
|
private Integer departId;
|
|
}
|