tijian_tieying/web/dccdc.Models/tkdmxModel.cs
2025-02-20 12:14:39 +08:00

22 lines
527 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace dccdc.Models
{
public class tkdmxModel
{
public int id { get; set; }
public int tkdid { get; set; }
public int wzid { get; set; }
public string wzmc { get; set; }
public decimal sl { get; set; }
public decimal dj { get; set; }
public DateTime czsj { get; set; }
public int sign { get; set; }
public decimal hj { get { return sl * dj; } }
}
}