namespace BBWY.Server.Model.Dto { public class PJZSShopSettingRequest { /// /// 店铺Id,Shop对象的ShopId (注意不是Shop对象的主键) /// public long ShopId { get; set; } /// /// 评价助手的钉钉地址 /// public string PJZSDingDingWebHook { get; set; } /// /// 评价助手的钉钉密钥 /// public string PJZSDingDingKey { get; set; } } }