2025-04-21 14:10:27 +08:00

38 lines
858 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using MyCode.Project.Infrastructure.Common;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Domain.Message.Request.Target
{
public class TargetRequst
{
/// <summary>
/// 主键ID编辑保存时传值
/// </summary>
public Guid? ID { get; set; }
/// <summary>
/// 店员ID
/// </summary>
public Guid ClerkID { get; set; }
/// <summary>
/// 加盟商选择店铺ID
/// </summary>
public Guid? ShopID { get; set; }
/// <summary>
///分类ID
/// </summary>
public Guid SuitFlag { get; set; }
/// <summary>
/// 指标金额
/// </summary>
public decimal TargetPrice { get; set; }
}
}