32 lines
670 B
C#
32 lines
670 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace MyCode.Project.Domain.Message.Request.KingDee
|
|||
|
|
{
|
|||
|
|
public class BillSave
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 更新字段
|
|||
|
|
/// </summary>
|
|||
|
|
public List<string> NeedUpDateFields { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 返回字段
|
|||
|
|
/// </summary>
|
|||
|
|
public List<string> NeedReturnFields { get; set; }
|
|||
|
|
|
|||
|
|
public bool IsDeleteEntry { get; set; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 表单数据包,JSON类型(必录)
|
|||
|
|
/// </summary>
|
|||
|
|
public object Model { get; set; }
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|