blob: 96403df44b9d876c7bc1a423f5fe81be7931ea58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php
/**
* TDeleteMappedStatement class file.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
* @link http://www.pradosoft.com/
* @copyright Copyright © 2005-2015 PradoSoft
* @license http://www.pradosoft.com/license/
* @package System.Data.SqlMap.Statements
*/
/**
* TDeleteMappedStatement class.
*
* @author Wei Zhuo <weizho[at]gmail[dot]com>
* @package System.Data.SqlMap.Statements
* @since 3.1
*/
class TDeleteMappedStatement extends TUpdateMappedStatement
{
}
|