27 lines
867 B
Plaintext
27 lines
867 B
Plaintext
////////////////////////////////////////////////////
|
|
// 本文件由拓通低代码开发平台自动生成,请不要修改 //
|
|
// ________ ___ ________ //
|
|
// /__ __/ / \ /__ __/ //
|
|
// / / / / / / //
|
|
// / / / / / / //
|
|
// /__/ \___/ /__/ //
|
|
// //
|
|
////////////////////////////////////////////////////
|
|
|
|
@using Tnb.Core;
|
|
@using Tnb.Vengine;
|
|
@using Tnb.Vengine.Domain;
|
|
@{
|
|
AcmenVmodelContext context = Model;
|
|
Vmodel vm = context.Vm;
|
|
}
|
|
using Tnb.Core;
|
|
|
|
namespace @(context.NsPrefix + "." + vm.areaCode + ".AppService");
|
|
|
|
public record @(vm.vmCode)CreateData(@vm.GetPropStr(false, false));
|
|
|
|
public record @(vm.vmCode)UpdateData(@vm.GetPropStr(true, false));
|
|
|
|
|