19 lines
395 B
C#
19 lines
395 B
C#
|
|
|
|||
|
|
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace GZ_LTHPilot_ORDER.Models.VO
|
|||
|
|
{
|
|||
|
|
public class SaleExecuteOut
|
|||
|
|
{
|
|||
|
|
public string FSALEORGNAME { get; set; }
|
|||
|
|
public string FBILLNO { get; set; }
|
|||
|
|
public string FDate { get; set; }
|
|||
|
|
public string FALLMATCHAMOUNT { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|