16 lines
402 B
C#
16 lines
402 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Lskj.PubBillManagement.Model
|
|
{
|
|
public class BillModuleModel
|
|
{
|
|
public BillSourceModel SourceModel { get; set; }
|
|
public object SourceControl { get;set; }
|
|
public object SourceDetailControl { get; set; }
|
|
public object SourceDetailDetailControl { get; set; }
|
|
}
|
|
}
|