master:微调;
parent
6178311b89
commit
93dbacbd82
|
|
@ -85,5 +85,4 @@ public class StoreHomepageController extends XktBaseController {
|
|||
return R.ok(BeanUtil.toBean(storeHomeService.getStoreProdInfo(storeId, storeProdId), StoreHomeProdResVO.class));
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@ import com.ruoyi.common.core.domain.R;
|
|||
import com.ruoyi.web.controller.xkt.vo.storeSaleRefundRecord.StoreSaleRefundRecordVO;
|
||||
import com.ruoyi.xkt.dto.storeSaleRefundRecord.StoreSaleRefundRecordDTO;
|
||||
import com.ruoyi.xkt.service.IStoreSaleRefundRecordService;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiOperation;
|
||||
import lombok.RequiredArgsConstructor;
|
||||
import org.springframework.security.access.prepost.PreAuthorize;
|
||||
|
|
@ -22,6 +23,7 @@ import java.util.List;
|
|||
* @author ruoyi
|
||||
* @date 2025-03-26
|
||||
*/
|
||||
@Api(tags = "档口销售返单")
|
||||
@RestController
|
||||
@RequiredArgsConstructor
|
||||
@RequestMapping("/rest/v1/sale-refund-records")
|
||||
|
|
|
|||
|
|
@ -63,6 +63,8 @@ public class SysNotice extends XktBaseEntity {
|
|||
*/
|
||||
private String status;
|
||||
|
||||
private String remark;
|
||||
|
||||
@Xss(message = "公告标题不能包含脚本字符")
|
||||
@NotBlank(message = "公告标题不能为空")
|
||||
@Size(min = 0, max = 50, message = "公告标题不能超过50个字符")
|
||||
|
|
|
|||
Loading…
Reference in New Issue