Zxd.Core/code/Zxd.Core.Domain/Dto/Zxd/CreateOrEditActiveDto.cs

40 lines
884 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 System;
namespace Zxd.Domain.Dto.Zxd
{
public class CreateOrEditActiveDto
{
public CreateOrEditActiveDto()
{
}
public int? Id { get; set; }
/// <summary>
/// 产品编码
/// </summary>
public string? ProductCode { get; set; }
/// <summary>
/// 事业部id
/// </summary>
public int Deptid { get; set; }
/// <summary>
/// 赠送的产品编码
/// </summary>
public string? ActiveCode { get; set; }
/// <summary>
/// 是否跟随订单赠送1用订单表的giftdays字段作为赠送时长0用本表的donateday字段作为赠送时长
/// </summary>
public int IsFollowOrder { get; set; }
/// <summary>
/// [Order][HandGif]
/// </summary>
public string? GifType { get; set; }
}
}