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