Back to project page EnterpriseShow.
The source code is released under:
This is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a co...
If you think the Android project EnterpriseShow listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.ruixinyuan.producttrainingfinal.bean; /*/*from w w w .j a va2 s . c o m*/ *@user vicentliu *@time 2013-6-20????4:45:25 *@package com.ruixinyuan.producttrainingfinal.bean */ public class SaleSkillBean { private int saleSkillId; private String saleSkillTitle; private String saleSkillContent; public SaleSkillBean() { super(); } public int getSaleSkillId() { return saleSkillId; } public void setSaleSkillId(int saleSkillId) { this.saleSkillId = saleSkillId; } public String getSaleSkillTitle() { return saleSkillTitle; } public void setSaleSkillTitle(String saleSkillTitle) { this.saleSkillTitle = saleSkillTitle; } public String getSaleSkillContent() { return saleSkillContent; } public void setSaleSkillContent(String saleSkillContent) { this.saleSkillContent = saleSkillContent; } }