38 lines
858 B
C#
38 lines
858 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|