parent
7bc094af3d
commit
1a36bc3da4
@ -0,0 +1,23 @@
|
||||
package com.ruoyi.tc.entity.request;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @author dong
|
||||
* @since 2024/11/21 18:49
|
||||
*/
|
||||
@Data
|
||||
@ApiModel("单位核查情况请求类")
|
||||
public class AssetdwHcRequest {
|
||||
|
||||
|
||||
/**
|
||||
* 单位名称
|
||||
*/
|
||||
@ApiModelProperty("单位名称")
|
||||
private String dwmc;
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,45 @@
|
||||
package com.ruoyi.tc.entity.response;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @author dong
|
||||
* @since 2024/11/21 18:36
|
||||
*/
|
||||
@Data
|
||||
@ApiModel("核查单位信息响应类")
|
||||
public class AssetdwHcResponse {
|
||||
|
||||
|
||||
/**
|
||||
* 单位名称
|
||||
*/
|
||||
@ApiModelProperty("单位名称")
|
||||
private String dwmc;
|
||||
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* 核查资产数量
|
||||
*/
|
||||
@ApiModelProperty("核查资产数量")
|
||||
private Integer total;
|
||||
|
||||
|
||||
/**
|
||||
* 完成数量
|
||||
*/
|
||||
@ApiModelProperty("完成数量")
|
||||
private Integer checked;
|
||||
|
||||
|
||||
/**
|
||||
* 百分比
|
||||
*/
|
||||
@ApiModelProperty("百分比")
|
||||
private double checkedRatio;
|
||||
|
||||
}
|
Loading…
Reference in new issue