2025-04-24 18:31:27 +08:00

54 lines
1.3 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using Newtonsoft.Json.Linq;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Domain.Message.Act.PurchaseOrder
{
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; }
}
public class SetChengNuoJiaoQiAct
{
public int EntityId { get; set; }
/// <summary>
/// 供应商ID
/// </summary>
public string FNumber { get; set; }
public int Fid { get; set; }
/// <summary>
/// 需要修改的字段 字段规则: 除了主表外,是 子表名,子表字段名
/// </summary>
public List<string> NeedUpDateFields { get; set; }
/// <summary>
/// 需要修改的值
/// </summary>
public string values { get; set; }
}
}