多店铺需求
This commit is contained in:
@@ -0,0 +1,30 @@
|
|||||||
|
package com.czg.account.param;
|
||||||
|
|
||||||
|
import com.alibaba.fastjson2.annotation.JSONField;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.io.Serial;
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分店查询入参
|
||||||
|
* @author tankaikai
|
||||||
|
* @since 2025-04-07 18:02
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class ShopBranchParam implements Serializable {
|
||||||
|
|
||||||
|
@Serial
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分店名称
|
||||||
|
*/
|
||||||
|
private String branchShopName;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 店铺ID
|
||||||
|
*/
|
||||||
|
@JSONField(serialize = false)
|
||||||
|
private Long shopId;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user