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

50 lines
1.0 KiB
C#
Raw 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 System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
namespace SOH.Entities.DTO
{
[Serializable()]
[DataContract(IsReference = true)]
public class dto_tempdjxm
{
/// <summary>
/// 组合编码
/// </summary>
[DataMember]
public int zhbm { get; set; }
/// <summary>
/// 组合名称
/// </summary>
[DataMember]
public string zhmc { get; set; }
/// <summary>
/// 价格
/// </summary>
[DataMember]
public int jg { get; set; }
/// <summary>
/// 价格double格式
/// </summary>
[DataMember]
public double jg_v { get; set; }
/// <summary>
/// 折后价格
/// </summary>
[DataMember]
public int zhjg { get; set; }
/// <summary>
/// 折后价格double格式
/// </summary>
[DataMember]
public double zhjg_v { get; set; }
}
}