记录app处理图片时长
parent
d2f73da63b
commit
2086b90ce7
@ -0,0 +1,25 @@
|
|||||||
|
package com.ruoyi.system.domain.req;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 接口请求实体
|
||||||
|
*
|
||||||
|
* @author gongzhenkun
|
||||||
|
* @date 2022/10/8 11:44
|
||||||
|
*/
|
||||||
|
@ApiModel(value = "AIPostReqEx", description = "AI接口请求实体")
|
||||||
|
public class AIPostReqEx extends AiPostReq{
|
||||||
|
private int appDealTime;
|
||||||
|
|
||||||
|
public int getAppDealTime() {
|
||||||
|
return appDealTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAppDealTime(int appDealTime) {
|
||||||
|
this.appDealTime = appDealTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue