39 lines
729 B
C#
39 lines
729 B
C#
using Newtonsoft.Json;
|
|
using OfficeOpenXml.Attributes;
|
|
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace ARW.Model.Vo.Api.OrderManage.Orders
|
|
{
|
|
/// <summary>
|
|
/// 售后按钮展示对象Api
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-10-21
|
|
/// </summary>
|
|
public class ButtonVO
|
|
{
|
|
/// <summary>
|
|
/// 描述 :名称
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :
|
|
/// </summary>
|
|
public bool Primary { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 类型 (2撤销 3填写运单号 4修改运单号 5查看物流 )
|
|
/// </summary>
|
|
public int Type { get; set; }
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|