# Constants
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
整体和部分的弱包含关系,通过connection对象关联,创建的时候创建,不能一起复制,比如团险中的人员清单,复制的时候复制connection对象.
对象之间松散的关联关系,比如外部客户信息,关联到CIF,或者联系其他的角色对象,需要通过connection对象关联.
整体和部分的强包含关系,关联的子角色是父角色的一部分,需要一起创建但可以不一起加载,在需要的时候加载.
缺省关系,整体和部分的强包含关系,关联的子角色是父角色的一部分,需要一起创建一起加载.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
# Structs
No description provided by the author
No description provided by the author
No description provided by the author
*
* 静态定义对象是独占还是共享,S共享,M独占,H半独占共享,E是外部表,缺省是独占
* 独占意味着静态表的数据就是保单数据的一部分,随着保单数据CRUD,另一份保单实例不能访问本保单实例的数据
* 共享意味着静态表的数据不是保单数据的一部分,只是一个引用,如果已经存在则不用增加,需要和保单一起RU,
* 可以和另一份保单实例共享静态数据,因此不能随便删除,典型的例子是CIF的party
* 半共享模式意味着静态表实例是随着保单实例一起创建的,也可以修改,可以单独操作,不属于保单数据的一部分,因此不能随便删除,CRU
* 外部静态表表示这是一份外部管理的数据,只是在role中纪录了一个外键连接,缺省不被自动装载,但是需要的时候可以手工装载,用于处理数据量很大的场景,
* 不能在装载保单的时候一起把静态表的数据装载,比如团险的被保人清单
*
* @author liu
*/.
*
* 自己定义的所有事实的祖先类, 包括静态对象,
*
* 外部的静态对象(包括外联和共享)不要继承本类
*/.
No description provided by the author
No description provided by the author
# Interfaces
No description provided by the author