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.
42 lines
1.1 KiB
C#
42 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace TradeModel
|
|
{
|
|
public class JC_BaseCode
|
|
{
|
|
public String KeyName{ get; set; }
|
|
public String BaseCodeName{ get; set; }
|
|
public bool IsSys { get; set; }
|
|
}
|
|
public class JC_BaseCodeDetail
|
|
{
|
|
public Int32? Code{ get; set; }
|
|
public String KeyName { get; set; }
|
|
public String Name{ get; set; }
|
|
public Int32? SortNo{ get; set; }
|
|
public Int32? CompanyId { get; set; }
|
|
public int IsUse { get; set; }
|
|
public String UseState { get; set; }
|
|
|
|
}
|
|
public class JC_Log
|
|
{
|
|
public Int32? Id { get; set; }
|
|
public Int32? InUserId { get; set; }
|
|
public DateTime? InDate { get; set; }
|
|
/// <summary>
|
|
/// 1订单获取物流单号
|
|
/// </summary>
|
|
public String LogType { get; set; }
|
|
public String LogContext { get; set; }
|
|
/// <summary>
|
|
/// 关联id
|
|
/// </summary>
|
|
public Int32? InnerId { get; set; }
|
|
|
|
public String InName { get; set; }
|
|
}
|
|
}
|
|
|