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.
25 lines
553 B
C#
25 lines
553 B
C#
using Myshipping.Core.Entity;
|
|
using SqlSugar;
|
|
using System.ComponentModel;
|
|
|
|
namespace Myshipping.Application.Entity
|
|
{
|
|
/// <summary>
|
|
/// 月结账户表
|
|
/// </summary>
|
|
[SugarTable("monthly_pay_account")]
|
|
[Description("月结账户表")]
|
|
public class MonthlyPayAccount : DBEntityTenant
|
|
{
|
|
/// <summary>
|
|
/// 月结户头
|
|
/// </summary>
|
|
public string Account { get; set; }
|
|
|
|
/// <summary>
|
|
/// 月结卡号
|
|
/// </summary>
|
|
public string CardNo { get; set; }
|
|
}
|
|
}
|