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.
30 lines
669 B
C#
30 lines
669 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using FreeSql.DataAnnotations;
|
|
namespace djy.Paas.Model
|
|
{
|
|
/// <summary>
|
|
/// 报关
|
|
/// </summary>
|
|
public class tb_BaoguanOrderCompanyPushMsg:DataBase
|
|
{/// <summary>
|
|
/// 报关单的OrderGid
|
|
/// </summary>
|
|
public Guid? OrderGid { get; set; }
|
|
/// <summary>
|
|
///企业公司ID
|
|
/// </summary>
|
|
public Guid? CompanyGid { get; set; }
|
|
|
|
/// <summary>
|
|
/// 推送数据
|
|
/// </summary>
|
|
[Column(StringLength =-1)]
|
|
public string Data { get; set; }
|
|
|
|
}
|
|
}
|