20 lines
503 B
C#
20 lines
503 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Crm.Core.Domain.Dto.Order
|
|
{
|
|
/// <summary>
|
|
/// 创建订单分成
|
|
/// </summary>
|
|
public class CreateCommissionRuleDto
|
|
{
|
|
public decimal orderId { get; set; }
|
|
public decimal userId { get; set; }
|
|
public decimal? szzyOrderId { get; set; }
|
|
public decimal? ratio { get; set; }
|
|
public decimal ismain { get; set; }
|
|
}
|
|
} |