using Myshipping.Core.Entity;
using SqlSugar;
using System.ComponentModel;
namespace Myshipping.Application.Entity
{
///
/// 月结账户表
///
[SugarTable("monthly_pay_account")]
[Description("月结账户表")]
public class MonthlyPayAccount : DBEntityTenant
{
///
/// 月结户头
///
public string Account { get; set; }
///
/// 月结卡号
///
public string CardNo { get; set; }
}
}