add 稽查设置
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
package com.cool.store.dto.inspection.setting;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author zhangchenbiao
|
||||
* @FileName: AddInspectionSettingDTO
|
||||
* @Description: 新增稽核区域设置
|
||||
* @date 2023-07-17 14:40
|
||||
*/
|
||||
@Data
|
||||
public class AddInspectionSettingDTO {
|
||||
|
||||
@ApiModelProperty("区域名称")
|
||||
private String zoneName;
|
||||
|
||||
@ApiModelProperty("稽核人id")
|
||||
private String inspectionUserId;
|
||||
|
||||
@ApiModelProperty("归属地ids")
|
||||
private List<Long> openAreaMappingIds;
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
package com.cool.store.dto.inspection.setting;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @author zhangchenbiao
|
||||
* @FileName: DeleteInspectionSettingDTO
|
||||
* @Description: 删除稽核区域设置
|
||||
* @date 2023-07-17 14:41
|
||||
*/
|
||||
@Data
|
||||
public class DeleteInspectionSettingDTO {
|
||||
|
||||
@ApiModelProperty("id")
|
||||
private Long inspectionSettingId;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,29 @@
|
||||
package com.cool.store.dto.inspection.setting;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author zhangchenbiao
|
||||
* @FileName: UpdateInspectionSettingDTO
|
||||
* @Description: 更新稽核区域设置
|
||||
* @date 2023-07-17 14:41
|
||||
*/
|
||||
@Data
|
||||
public class UpdateInspectionSettingDTO {
|
||||
|
||||
@ApiModelProperty("id")
|
||||
private Long inspectionSettingId;
|
||||
|
||||
@ApiModelProperty("区域名称")
|
||||
private String zoneName;
|
||||
|
||||
@ApiModelProperty("稽核人id")
|
||||
private String inspectionUserId;
|
||||
|
||||
@ApiModelProperty("归属地ids")
|
||||
private List<Long> openAreaMappingIds;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
package com.cool.store.vo.inspection.setting;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author zhangchenbiao
|
||||
* @FileName: InspectionSettingPageVO
|
||||
* @Description:
|
||||
* @date 2023-07-17 14:32
|
||||
*/
|
||||
@Data
|
||||
public class InspectionSettingDetailVO {
|
||||
|
||||
@ApiModelProperty("id")
|
||||
private Long inspectionSettingId;
|
||||
|
||||
@ApiModelProperty("区域名称")
|
||||
private String zoneName;
|
||||
|
||||
@ApiModelProperty("稽核人id")
|
||||
private String inspectionUserId;
|
||||
|
||||
@ApiModelProperty("稽核人名称")
|
||||
private String inspectionUsername;
|
||||
|
||||
@ApiModelProperty("归属地ids")
|
||||
private List<Long> openAreaMappingIds;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
package com.cool.store.vo.inspection.setting;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* @author zhangchenbiao
|
||||
* @FileName: InspectionSettingPageVO
|
||||
* @Description:
|
||||
* @date 2023-07-17 14:32
|
||||
*/
|
||||
@Data
|
||||
public class InspectionSettingPageVO {
|
||||
|
||||
@ApiModelProperty("id")
|
||||
private Long inspectionSettingId;
|
||||
|
||||
@ApiModelProperty("区域名称")
|
||||
private String zoneName;
|
||||
|
||||
@ApiModelProperty("稽核人id")
|
||||
private String inspectionUserId;
|
||||
|
||||
@ApiModelProperty("稽核人名称")
|
||||
private String inspectionUsername;
|
||||
|
||||
@ApiModelProperty("更新时间")
|
||||
private Date updateTime;
|
||||
|
||||
@ApiModelProperty("更新人名称")
|
||||
private String updateUsername;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user