| package doumeemes.dao.ext.dto; | 
|   | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| /** | 
|  * @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; | 
|   | 
| } |