tijian_jichuang/Code/Entities/DTO/dto_tjfzxx.cs
2025-02-20 11:54:48 +08:00

39 lines
1015 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.Serialization;
namespace SOH.Entities.DTO
{
/// <summary>
/// 团检分组信息
/// </summary>
[Serializable()]
[DataContract(IsReference = true)]
public class dto_tjfzxx
{
/// <summary>
/// 条码
/// </summary>
public int tm { get; set; }
public short tmztz { get; set; }
public short tjztz { get; set; }
public int htfzbm { get; set; }
public string htfzmc { get; set; }
public int fzjg { get; set; }
public short fzzl { get; set; }
public int ssjg { get; set; }
public short gzfbj { get; set; }
/// <summary>
/// 加项公自费标记
/// </summary>
public short jxgzfbj { get; set; }
/// <summary>
/// 操作加减项标记,标记是否有加项的
/// </summary>
public short czjjxbj { get; set; }
}
}