You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
534 B
20 lines
534 B
namespace BBWY.Server.Model.Dto
|
|
{
|
|
public class PJZSShopSettingRequest
|
|
{
|
|
/// <summary>
|
|
/// 店铺Id,Shop对象的ShopId (注意不是Shop对象的主键)
|
|
/// </summary>
|
|
public long ShopId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 评价助手的钉钉地址
|
|
/// </summary>
|
|
public string PJZSDingDingWebHook { get; set; }
|
|
|
|
/// <summary>
|
|
/// 评价助手的钉钉密钥
|
|
/// </summary>
|
|
public string PJZSDingDingKey { get; set; }
|
|
}
|
|
}
|
|
|