namespace iWare.Wms.Application
{
///
/// 表单编辑
///
public class FormEditDto : BaseDto
{
///
///表单标题 不可重复
///
public string Title { get; set; }
///
/// form表单Json
///
public string FormJson { get; set; }
///
/// 是否发布
///
public bool Publish { get; set; }
///
/// 表单类型ID
///
public long TypeId { get; set; }
///
/// 版本
///
public int Version { get; set; }
}
}