|  |  |  | 
|---|
|  |  |  | 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 江蹄蹄 | 
|---|
|  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "工序名称") | 
|---|
|  |  |  | private String procedureName; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "计价方式") | 
|---|
|  |  |  | private String type; | 
|---|
|  |  |  | @ApiModelProperty(value = "计价方式  0计件 1计时") | 
|---|
|  |  |  | private Integer type; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "主组织编码(关联department表根组织)") | 
|---|
|  |  |  | private Integer rootDepartId; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "工厂编码(关联department表)") | 
|---|
|  |  |  | private Integer departId; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } | 
|---|