53 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Java
		
	
	
	
		
		
			
		
	
	
			53 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Java
		
	
	
	
| 
								 | 
							
								package tqq9.lc123.cloud.app.api.model;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								import kd.bos.openapi.common.custom.annotation.ApiModel;
							 | 
						||
| 
								 | 
							
								import kd.bos.openapi.common.custom.annotation.ApiParam;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								@ApiModel
							 | 
						||
| 
								 | 
							
								public class FWBillStateUpdModel {
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    @ApiParam(value = "金蝶单据类型", example = "bd_material", required = true)
							 | 
						||
| 
								 | 
							
								    private String KDBillType;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    @ApiParam(value = "金蝶单据编码", example = "M001", required = true)
							 | 
						||
| 
								 | 
							
								    private String KDBillNumber;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    @ApiParam(value = "状态", example = "A", required = true)
							 | 
						||
| 
								 | 
							
								    private String state;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    @ApiParam(value = "说明", example = "审核通过")
							 | 
						||
| 
								 | 
							
								    private String message;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    public String getKDBillType() {
							 | 
						||
| 
								 | 
							
								        return KDBillType;
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    public void setKDBillType(String KDBillType) {
							 | 
						||
| 
								 | 
							
								        this.KDBillType = KDBillType;
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    public String getKDBillNumber() {
							 | 
						||
| 
								 | 
							
								        return KDBillNumber;
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    public void setKDBillNumber(String KDBillNumber) {
							 | 
						||
| 
								 | 
							
								        this.KDBillNumber = KDBillNumber;
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    public String getState() {
							 | 
						||
| 
								 | 
							
								        return state;
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    public void setState(String state) {
							 | 
						||
| 
								 | 
							
								        this.state = state;
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    public String getMessage() {
							 | 
						||
| 
								 | 
							
								        return message;
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    public void setMessage(String message) {
							 | 
						||
| 
								 | 
							
								        this.message = message;
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								}
							 |