You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.1 KiB
C#
44 lines
1.1 KiB
C#
using System.ComponentModel;
|
|
using SqlSugar;
|
|
|
|
namespace DS.WMS.Core.Op.Entity.TaskInteraction
|
|
{
|
|
/// <summary>
|
|
/// 任务邮件抄送人配置
|
|
/// </summary>
|
|
[SugarTable("business_task_mail_cc", "任务邮件抄送人配置")]
|
|
public class BusinessTaskMailCC
|
|
{
|
|
/// <summary>
|
|
/// 任务邮件配置ID
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public long TaskMailId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否操作
|
|
/// </summary>
|
|
[Description("是否操作")]
|
|
public bool IsOperator { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否单证
|
|
/// </summary>
|
|
[Description("是否单证")]
|
|
public bool IsVouchingClerk { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否销售
|
|
/// </summary>
|
|
[Description("是否销售")]
|
|
public bool IsSale { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否客服
|
|
/// </summary>
|
|
[Description("是否客服")]
|
|
public bool IsCustomerService { get; set; }
|
|
}
|
|
|
|
}
|